Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resolveGreen (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            }
        }
    
        dependencies {
            artifactTypes {
                jar {
                    attributes.attribute(color, 'blue')
                }
            }
        }
    
        task resolveGreen(type: Copy) {
            def artifacts = configurations.implementation.incoming.artifactView {
                attributes { it.attribute(color, 'green') }
            }.artifacts
            from artifacts.artifactFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                            from.attribute(artifactType, 'jar')
                            to.attribute(artifactType, 'blue')
                        }
                    }
                    task resolveGreen(type: Resolve) {
                        artifacts = configurations.compile.incoming.artifactView {
                            attributes { it.attribute(artifactType, 'green') }
                        }.artifacts
    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