Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for subproject2 (0.18 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.copy(action)
    
        override fun getDescription(): String? =
            delegate.description
    
        override fun subprojects(action: Action<in Project>) =
            delegate.subprojects(action)
    
        override fun subprojects(configureClosure: Closure<*>) =
            delegate.subprojects(configureClosure)
    
        override fun getBuildscript(): ScriptHandler =
            delegate.buildscript
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

                group = "group of root task"
            }
            project(":someproj1"){
                task hello {
                    group = "group of subproject task"
                }
            }
            project(":someproj2"){
                task hello {
                    group = "group of subproject task"
                }
            }
    """
            when:
            run "help", "--task", "hello"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

        }
    
        String providerOf(String expression) {
            return "project.provider { $expression }"
        }
    
        def setup() {
            createDirs("subproject")
            settingsFile("""
                include "subproject"
    
                rootProject.name = "${PROJECT_NAME}"
                gradle.rootProject {
                    version = "${PROJECT_VERSION}"
                }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    A composite build is a build that includes other builds.
    
    image::structuring-builds-4.png[]
    
    [[composite_build_intro]]
    A composite build is similar to a Gradle multi-project build, except that instead of including `subprojects`, entire `builds` are included.
    
    Composite builds allow you to:
    
    * Combine builds that are usually developed independently, for instance, when trying out a bug fix in a library that your application uses.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                include(":libA")
                include(":libB")
                include(":libC")
    
            """.stripIndent()
    
            if (config.subProjects != 0) {
                includedProjects += """${(0..config.subProjects - 1).collect { "include(\"project$it\")" }.join("\n")}"""
            }
    
            return includedProjects
        }
    
        static String generateBuildGradle(Integer subProjectNumber) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        }
    
        private void withSubprojects(String... subprojects) {
            subprojects.each {
                createDir it
                settingsFile "include '$it'\n"
            }
        }
    
        private void withZipArtifactProducingSubprojects(String... subprojects) {
            withSubprojects subprojects
            taskTypeWithOutputFileProperty()
            buildFile '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        }
    
        TestFile multiProjectBuildInSubFolder(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().multiProjectBuild(projectName, subprojects, cl)
        }
    
        void multiProjectBuildInRootFolder(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

    :buildB:compileJava
    \\--- :buildC:compileJava
         \\--- :buildB:compileJava (*)""")
        }
    
        def "dependency cycle between subprojects in an included multiproject build"() {
            given:
            dependency "org.test:buildB:1.0"
    
            buildB.buildFile << """
                dependencies {
                    implementation "org.test:b1:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            given:
            def repoDir = file("repo")
            createDirs("deck", "card", "shuffle")
            settingsFile << "include 'deck', 'card', 'shuffle'"
            buildFile << """
                subprojects {
                    apply plugin: 'cpp-library'
                    apply plugin: 'maven-publish'
    
                    group = 'some.group'
                    version = '1.2'
                    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        abstract int getMaxDistributionSizeBytes()
    
        /**
         * Change this whenever you add or remove subprojects for distribution core modules (lib/).
         */
        int getCoreLibJarsCount() {
            69
        }
    
        /**
         * Change this whenever you add or remove subprojects for distribution-packaged plugins (lib/plugins).
         */
        int getPackagedPluginsJarCount() {
            80
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top