Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for subproject1 (0.34 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        def "service provided by a plugin cannot be shared by subprojects with different classloaders"() {
            createDirs("plugin1", "plugin2", "subproject1", "subproject2")
            settingsFile """
            pluginManagement {
                includeBuild 'plugin1'
                includeBuild 'plugin2'
            }
            include 'subproject1'
            include 'subproject2'
            """
            // plugin 1 declares a service
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    			},
    			{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void subprojects(Closure configureClosure) {
            subprojects(this, ConfigureUtil.configureUsing(configureClosure));
        }
    
        @Override
        public void subprojects(Action<? super Project> action) {
            subprojects(this, action);
        }
    
        @Override
        public void subprojects(ProjectInternal referrer, Action<? super Project> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Returns the set containing this project and its subprojects.</p>
         *
         * @return The set of projects.
         */
        Set<Project> getAllprojects();
    
        /**
         * <p>Returns the set containing the subprojects of this project.</p>
         *
         * @return The set of projects.  Returns an empty set if this project has no subprojects.
         */
        Set<Project> getSubprojects();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'"""
    
            buildFile << """
                subprojects {
                    group = 'test'
                    configurations { create("default") }
                    task producer(type: FileProducer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            // This test exists because a NullPointerException was thrown by getTaskDependencyFromProjectDependency()
            // if the rootProject defined a task as the same name as a subproject task, but did not define the same configuration.
    
            def configuration = conf()
    
            def mainTask = Mock(Task)
            def rootProject = Mock(Project)
            def taskProject = Mock(Project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Please use standard locations for settings and build files:
    
    * settings file in the root of the build
    * build file in the root of each subproject
    
    [[disabling_user_home_cache_cleanup]]
    ==== Deprecated org.gradle.cache.cleanup property
    
    The `org.gradle.cache.cleanup` property in `gradle.properties` under Gradle User Home has been deprecated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.Project.subprojects(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top