Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for subproject1 (0.14 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

        }
    
        def "multiple subprojects with identical toolchain definitions"() {
            given:
            settingsFile << settingsForBuildWithSubprojects(singleUrlResolverCode(uri))
    
            def jdkMetadata = getJvmInstallationMetadata(jdkRepository.getJdk())
            setupSubproject("subproject1", "Foo", jdkMetadata)
            setupSubproject("subproject2", "Bar", jdkMetadata)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r210/ToolingApiEclipseModelCrossVersionSpec.groovy

            """
            createDirs("subproject-a", "subproject-b", "subproject-c")
            settingsFile << """
                include 'subproject-a', 'subproject-b', 'subproject-c'
            """
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject subprojectA = rootProject.children.find { it.name == 'subproject-a' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiEclipseModelCrossVersionSpec.groovy

        }
    
        def "Multi-project build can define different target bytecode level for subprojects"() {
            given:
            createDirs("subproject-a", "subproject-b", "subproject-c")
            settingsFile << """
                include 'subproject-a', 'subproject-b', 'subproject-c'
            """
    
            buildFile << """
                project(':subproject-a') {
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskDependenciesCrossVersionSpec.groovy

            task(':subproject:b').dependencies == tasks(':subproject:a')
            task(':subproject:c').dependencies == tasks(':subproject:b')
            task(':subproject:d').dependencies == tasks(':subproject:b', ':subproject:c')
        }
    
        def "reports task dependencies for tasks in another build"() {
            given:
            settingsFile << """
                includeBuild 'included'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r27/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

            EclipseProject subprojectA = rootProject.children.find {EclipseProject project -> project.name == "subprojectA"}
            then:
            subprojectA.linkedResources.size() == 4
            subprojectA.sourceDirectories.size() == 5
    
            subprojectA.linkedResources[0].name == 'src-sibling'
            subprojectA.linkedResources[0].type == '2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/java/ParallelTestTaskIntegrationTest.groovy

                latch.countDown()
                latch.await()
                println path + " go"
            }
    
            executable = "$java"
        }
    }
    """
            subprojects.each { subproject ->
                settingsFile << "include '$subproject'\n"
                file("${subproject}/src/test/java/ThingTest.java") << """
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class ThingTest {
        @Test
        public void verify() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

            }
    
            when:
            buildFile << '''
                subprojects {
                    java { withSourcesJar() }
                }
            '''
            then:
            succeeds(':a:sourcesJar')
        }
    
        def "project packages own and runtime dependency sources if requested"() {
            given:
            buildFile << '''
                subprojects {
                    java {
                        withSourcesJar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

            buildTestFixture.singleProjectBuild(projectName, cl)
        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            buildTestFixture.multiProjectBuild(projectName, subprojects, cl)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

            steps {
                script {
                    // Because we exclude tests in `distributions-integ-tests` below, `@Flaky` won't work in that subproject.
                    // Here we check the existence of `@Flaky` annotation to make sure nobody use that annotation in `distributions-integ-tests` subproject.
                    name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS"
                    executionMode = BuildStep.ExecutionMode.ALWAYS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/CheckProject.kt

            buildType(stagePasses)
            subProject(stageProject)
    
            prevStage = stage
            previousPerformanceTestPasses.addAll(stageProject.performanceTests)
        }
    
        buildType(GitHubMergeQueueCheckPass(model))
    
        buildTypesOrder = buildTypes
        subProjectsOrder = subProjects
    
        cleanupRule(
            historyDays = 14,
            artifactsDays = 7,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 05:52:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top