Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for subproject1 (0.24 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. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:multi_project_builds_applying_plugins]]
    === Applying plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The build script above is at: `AcmeHealth/subprojects/AcmePatientRecordLib/build.gradle`. +
    The file path will resolve to the absolute of: `dev/projects/AcmeHealth/shared/config.xml`.
    
    [source, text]
    ----
    dev
    ├── projects
    │   ├── AcmeHealth
    │   │   ├── subprojects
    │   │   │   ├── AcmePatientRecordLib
    │   │   │   │   └── build.gradle
    │   │   │   └── ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            settingsFile << """
                include "testlib", "common"
            """
    
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    configurations.all {
                       resolutionStrategy.failOnVersionConflict()
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. 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)
Back to top