Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for IvyModuleDescriptorSpec (0.33 sec)

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

     * {@link #description(Action)}.
     *
     * @since 1.3
     */
    @HasInternalProtocol
    public interface IvyModuleDescriptorSpec {
    
        /**
         * Allow configuration of the descriptor, after it has been generated according to the input data.
         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'ivy-publish'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.publish.ivy.IvyModuleDescriptorSpec.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/GenerateIvyDescriptor.java

        private static IvyModuleDescriptorSpecInternal toIvyModuleDescriptorInternal(IvyModuleDescriptorSpec ivyModuleDescriptorSpec) {
            if (ivyModuleDescriptorSpec == null) {
                return null;
            } else if (ivyModuleDescriptorSpec instanceof IvyModuleDescriptorSpecInternal) {
                return (IvyModuleDescriptorSpecInternal) ivyModuleDescriptorSpec;
            } else {
                throw new InvalidUserDataException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    The `descriptor` property can also be used to add additional custom elements as children of the `&lt;info&gt;` element, like so:
    
    .customizing the publication identity
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/IvyPluginPublishingPlugin.java

            Provider<String> revision = getProviderFactory().provider(mainPublication::getRevision);
    
            publication.descriptor(new Action<IvyModuleDescriptorSpec>() {
                @Override
                public void execute(IvyModuleDescriptorSpec descriptor) {
                    descriptor.description(new Action<IvyModuleDescriptorDescription>() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyModuleDescriptorSpecInternal.java

    import org.gradle.api.publish.ivy.IvyModuleDescriptorSpec;
    import org.gradle.api.publish.ivy.internal.dependency.IvyDependency;
    import org.gradle.api.publish.ivy.internal.dependency.IvyExcludeRule;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublicationCoordinates;
    
    import java.util.List;
    
    public interface IvyModuleDescriptorSpecInternal extends IvyModuleDescriptorSpec {
    
        IvyPublicationCoordinates getCoordinates();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     * </p><p>
     * In addition, {@link IvyModuleDescriptorSpec} provides configuration methods to customize licenses, authors, and the description to be published in the Ivy module descriptor.
     * </p><p>
     * For any other tweaks to the publication, it is possible to modify the generated Ivy descriptor file prior to publication. This is done using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorAuthor.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy;
    
    import org.gradle.api.provider.Property;
    
    /**
     * An author of an Ivy publication.
     *
     * @since 4.8
     * @see IvyModuleDescriptorSpec
     */
    public interface IvyModuleDescriptorAuthor {
    
        /**
         * The name of this author.
         */
        Property<String> getName();
    
        /**
         * The URL of this author.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 997 bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorDescription.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy;
    
    import org.gradle.api.provider.Property;
    
    /**
     * The description of an Ivy publication.
     *
     * @since 4.8
     * @see IvyModuleDescriptorSpec
     */
    public interface IvyModuleDescriptorDescription {
    
        /**
         * The text of this description.
         */
        Property<String> getText();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorLicense.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy;
    
    import org.gradle.api.provider.Property;
    
    /**
     * A license of an Ivy publication.
     *
     * @since 4.8
     * @see IvyModuleDescriptorSpec
     */
    public interface IvyModuleDescriptorLicense {
    
        /**
         * The name of this license.
         */
        Property<String> getName();
    
        /**
         * The URL of this license.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1000 bytes
    - Viewed (0)
Back to top