Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for javadocElements (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

                expectedVariants.addAll([variantName(feature, 'apiElements'), variantName(feature, 'runtimeElements')])
                if (withDocumentation) {
                    expectedVariants.addAll([variantName(feature, 'javadocElements'), variantName(feature, 'sourcesElements')])
                }
            }
            def parsedModuleVariants = mavenModule.parsedModuleMetadata.variants*.name as TreeSet
            assert parsedModuleVariants == expectedVariants
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

    The only attribute distinguishing these variants is 'org.gradle.docstype'. Add this attribute to the consumer's configuration to resolve the ambiguity:
      - Value: 'javadoc' selects variant: 'javadocElements'
      - Value: 'sources' selects variant: 'sourcesElements'"""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

            given:
            buildFile << '''
                subprojects {
                    java {
                        withJavadocJar()
                    }
                    configurations {
                        javadocElements.extendsFrom api
                    }
                }
            '''
    
            when:
            succeeds 'a:collectJavadoc'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            The only attribute distinguishing these variants is 'org.gradle.docstype'. Add this attribute to the consumer's configuration to resolve the ambiguity:
              - Value: 'javadoc' selects variant: 'javadocElements'
              - Value: 'sources' selects variant: 'sourcesElements'""")
    
            and: "Helpful resolutions are provided"
            assertSuggestsReviewingAlgorithm()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top