Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for multiProject (0.3 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

            then:
            converter.convert(properties, layout).properties.get(DaemonBuildOptions.IdleTimeoutOption.GRADLE_PROPERTY) == "125"
        }
    
        def "configures from root dir in a multiproject build"() {
            when:
            def properties = properties()
            def layout = layout(properties) {
                setProjectDir(rootDir.file("foo"))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

            }
            generatedCode['RootProjectDependency'].with {
                noSubAccessors()
            }
    
            and:
            compiles()
        }
    
        def "generates accessors for flat multiproject"() {
            when:
            generateSources project("root") {
                project("core")
                project("lib")
                project("utils")
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                '''.stripIndent()
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "can show dependent components in parallel"() {
            given: 'a multiproject build'
            settingsFile.text = multiProjectSettings()
            buildScript multiProjectBuild()
    
            when: 'two reports in parallel'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            imlHasDependencies(["buildB"], ["external-dep-1.0.jar"])
        }
    
        @ToBeFixedForConfigurationCache
        def "builds IDEA metadata with dependency cycle between substituted projects in a multiproject build"() {
            given:
            dependency "org.test:buildB:1.0"
    
            buildB.buildFile << """
                dependencies {
                    api "org.test:b1:1.0"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    ====
    include::sample[dir="snippets/plugins/multiproject/kotlin", files="settings.gradle.kts[tags=include-subprojects];build.gradle.kts[tags=plugins-on-subprojects];hello-a/build.gradle.kts[];hello-b/build.gradle.kts[];goodbye-c/build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            then:
            generatedFiles*.assertDoesNotExist()
        }
    
        @ToBeFixedForConfigurationCache
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "can create Visual Studio solution for multiproject depending on the same prebuilt binary from another project in parallel"() {
            given:
            createDirs("projectA", "projectB", "library")
            settingsFile.text = """
                rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(1, ":aPing", ":bPing")
                run ":aPing", ":bPing"
            }
        }
    
        def "tasks are not run in parallel if destroy files overlap with output files in multiproject build"() {
            given:
            withParallelThreads(2)
            buildFile << """
                def dir = rootProject.file("dir")
    
                project(':a') { aPing.destroyables.register dir }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            then:
            succeeds TASKS_DETAILED_REPORT_TASK
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2023")
        def "can deal with tasks with named task dependencies that are created by rules - multiproject"() {
            when:
            settingsFile << "include 'module'"
    
            file("module/build.gradle") << getBuildScriptContent()
    
            then:
            succeeds TASKS_DETAILED_REPORT_TASK
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    ====
    include::sample[dir="snippets/antMigration/multiProject/kotlin",files="web/build.gradle.kts[]"]
    include::sample[dir="snippets/antMigration/multiProject/groovy",files="web/build.gradle[]"]
    ====
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top