Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for myPublicationName (0.35 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/PublishingExtension.java

         * <pre class='autoTested'>
         * plugins {
         *     id 'maven-publish'
         * }
         *
         * publishing {
         *   publications {
         *     myPublicationName(MavenPublication) {
         *       // Configure the publication here
         *     }
         *   }
         * }
         * </pre>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     *
     * You directly add a named Maven publication the project's {@code publishing.publications} container by providing {@link MavenPublication} as the type.
     * <pre>
     * publishing {
     *   publications {
     *     myPublicationName(MavenPublication) {
     *       // Configure the publication here
     *     }
     *   }
     * }
     * </pre>
     *
     * The default Maven POM identifying attributes are mapped as follows:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     *
     * You directly add a named Ivy publication the project's {@code publishing.publications} container by providing {@link IvyPublication} as the type.
     * <pre>
     * publishing {
     *   publications {
     *     myPublicationName(IvyPublication) {
     *       // Configure the publication here
     *     }
     *   }
     * }
     * </pre>
     *
     * <p>
     * The Ivy module identifying attributes of the publication are mapped as follows:
     * </p>
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top