Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for MavenPom (0.34 sec)

  1. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractJavaProjectTestFixturesIntegrationTest.groovy

            then: "a test fixtures jar is published"
            file("build/repo/com/acme/root/1.3/root-1.3-test-fixtures.jar").exists()
    
            and: "appears as optional dependency in Maven POM"
            MavenPom pom = new MavenPom(file("build/repo/com/acme/root/1.3/root-1.3.pom"))
            pom.scope("runtime") {
                assertOptionalDependencies(
                        "org.apache.commons:commons-lang3:3.9"
                )
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomContributorSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.Action;
    
    /**
     * Allows to add contributors of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomContributor
     */
    public interface MavenPomContributorSpec {
    
        /**
         * Creates, configures and adds a contributor to the publication.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1010 bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingListSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.Action;
    
    /**
     * Allows to add mailing lists to a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomMailingList
     */
    public interface MavenPomMailingListSpec {
    
        /**
         * Creates, configures and adds a mailing list to the publication.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1012 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            metadataSources {
                mavenPom()
                artifact()
            }
        }
    }
    // end::maven-repo-with-metadata-sources[]
    
    // tag::maven-repo-with-ignore-gradle-metadata-redirection[]
    repositories {
        maven {
            url = uri("http://repo.mycompany.com/repo")
            metadataSources {
                mavenPom()
                artifact()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomLicenseSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.Action;
    
    /**
     * Allows to add licenses to a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomLicense
     */
    public interface MavenPomLicenseSpec {
    
        /**
         * Creates, configures and adds a license to the publication.
         */
        void license(Action<? super MavenPomLicense> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 986 bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomCiManagement.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.provider.Property;
    
    /**
     * The CI management system of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     */
    public interface MavenPomCiManagement {
    
        /**
         * The name of this CI management system.
         */
        Property<String> getSystem();
    
        /**
         * The URL of this CI management system.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomIssueManagement.java

     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.provider.Property;
    
    /**
     * The issue management system of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     */
    public interface MavenPomIssueManagement {
    
        /**
         * The name of this issue management system.
         */
        Property<String> getSystem();
    
        /**
         * The URL of this issue management system.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomDistributionManagement.java

    import org.gradle.api.Action;
    import org.gradle.api.provider.Property;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * The distribution management configuration of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     */
    @HasInternalProtocol
    public interface MavenPomDistributionManagement {
    
        /**
         * The download URL of the corresponding Maven publication.
         */
        Property<String> getDownloadUrl();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * </p><p>
     * To customize the metadata published in the generated POM, set properties, e.g. {@link MavenPom#getDescription()}, on the POM returned via the {@link #getPom()}
     * method or directly by an action (or closure) passed into {@link #pom(org.gradle.api.Action)}.
     * As a last resort, it is possible to modify the generated POM using the {@link MavenPom#withXml(org.gradle.api.Action)} method.
     * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomScm.java

     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.provider.Property;
    
    /**
     * The SCM (source control management) of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     */
    public interface MavenPomScm {
    
        /**
         * The connection URL of this SCM.
         */
        Property<String> getConnection();
    
        /**
         * The developer connection URL of this SCM.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top