Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for makeTree (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            buildFile << """
                repositories {
                    maven { url = "${mavenRepo.uri}" }
                }
    
                dependencies {
                    registerTransform(MakeGreen) {
                        from.attribute(color, 'green')
                        to.attribute(color, 'chartreuse')
                    }
                    implementation "org.test:test:1.0"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run(":app:toBeFinalized", "withDependency")
    
            def lib1Message = "Transforming lib1.jar with MakeGreen"
            def lib2Message = "Transforming lib2.jar with MakeGreen"
    
            then:
            if (!GradleContextualExecuter.configCache) {
                // Only runs once, as the transform execution in-memory cache is not discarded prior to execution time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top