Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buildDependents (0.29 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            executed ':b:buildNeeded', ':a:buildNeeded'
            fixture.assertProjectsConfigured(":", ":b", ":a")
        }
    
        @ToBeFixedForIsolatedProjects(because = "buildDependents is not IP compatible, configure projects from root,")
        def "handles buildDependents"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            file("a/build.gradle") << """ apply plugin: 'java' """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            then:
            task.taskDependencies.getDependencies(task)*.path as Set == [':middle:build', ':common:buildNeeded'] as Set
    
            when:
            task = middleProject.tasks['buildDependents']
    
            then:
            task.taskDependencies.getDependencies(task)*.path as Set == [':middle:build', ':app:buildDependents'] as Set
        }
    
        def "build other projects with cyclic dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top