Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for myPublicationName (0.21 sec)

  1. 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)
  2. 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