Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

        }
    
        def "reports outgoing variants of a Java Library with documentation"() {
            buildFile << """
                plugins { id 'java-library' }
                java {
                    withJavadocJar()
                    withSourcesJar()
                }
                group = 'org'
                version = '1.0'
            """
    
            when:
            run ':outgoingVariants'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Starting in Gradle 8.1, calling any of the following methods on `JavaPluginExtension` without
    the presence of the default `java` component is deprecated:
    
    - `withJavadocJar()`
    - `withSourcesJar()`
    - `consistentResolution(Action)`
    
    This `java` component is added by the `JavaPlugin`, which is applied by any of the Gradle JVM plugins including:
    
    - `java-library`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top