Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testedVariant (0.5 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                'org.test:module:1.0' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
    
            then:
            run ':checkDeps'
            def expectedVariant = testedVariant() // Cannot inline because of Groovy bug
    
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org.test:module:1.0:${expectedVariant}")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

            createBuildScripts("""
                publishing {
                    publications {
                        nestedVariant(MavenPublication) {
                            from MyComponentWithVariants.nestedVariant
                            artifactId = 'nested'
                        }
                        maven(MavenPublication) {
                            from new MyComponentWithVariants()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top