Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for singleProjectBuildInSubfolder (0.36 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

            given:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild('includedBuild')
                """
            }
            singleProjectBuildInSubfolder("includedBuild")
    
            when:
            def result = withConnection {
                action(new NoOpBuildAction()).run()
            }
    
            then:
            result == "result"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

            setup:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild 'includedBuild'
                """
            }
            singleProjectBuildInSubfolder("includedBuild")
    
            def projects = withConnection {
                action(new FetchIncludedGradleProjects()).run()
            }
            def includedTask = projects[0].tasks.find { it.name == 'tasks' }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            def buildBDir = multiProjectBuildInSubFolder("buildB", ["a", "b", "c"]) {
                settingsFile << """
                    includeBuild '../buildC'
                """
            }
            def buildCDir = singleProjectBuildInSubfolder("buildC")
    
            when:
            GradleBuild rootBuild = loadToolingModel(GradleBuild)
    
            then:
            rootBuild.buildIdentifier.rootDir == rootDir
            rootBuild.rootProject.name == "root"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                        dependencies {
                            testImplementation "org.test:buildC:1.0"
                        }
                    }
                """
            }
    
            buildC = singleProjectBuildInSubfolder("buildC") {
                buildFile << """
                    apply plugin: 'java-library'
                """
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

                        dependencies {
                            ${testImplementationConfiguration} "org.test:buildC:1.0"
                        }
                    }
                """
            }
    
            buildC = singleProjectBuildInSubfolder("buildC") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
        }
    
        def "EclipseProject model has dependencies substituted in composite"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        }
    
        BuildTestFile populate(String projectName, @DelegatesTo(BuildTestFile) Closure cl) {
            new BuildTestFixture(projectDir).withBuildInSubDir().populate(projectName, cl)
        }
    
        TestFile singleProjectBuildInSubfolder(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().singleProjectBuild(projectName, 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)
Back to top