Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for IvyPublication (0.21 sec)

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

         *
         * @return The publication to be published
         */
        @Internal
        public IvyPublication getPublication() {
            return publication.get();
        }
    
        /**
         * Sets the publication to be published.
         *
         * @param publication The publication to be published
         */
        public void setPublication(IvyPublication publication) {
            this.publication.set(toPublicationInternal(publication));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            given:
            buildFile << """
                apply plugin: 'ivy-publish'
                ${keyInfo.addAsPropertiesScript()}
    
                publishing {
                    publications {
                        ivyJava(IvyPublication) {
                            from components.java
                        }
                    }
                }
    
                signing {
                    ${signingConfiguration()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/tasks/PublishToIvyRepositoryTest.groovy

     */
    
    package org.gradle.api.publish.ivy.tasks
    
    import org.gradle.api.InvalidUserDataException
    import org.gradle.api.publish.internal.PublicationArtifactSet
    import org.gradle.api.publish.ivy.IvyPublication
    import org.gradle.api.publish.ivy.internal.publication.IvyPublicationInternal
    import org.gradle.api.publish.ivy.internal.publisher.IvyNormalizedPublication
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/kotlin/build.gradle.kts

    }
    // end::use-plugin[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    // tag::publish-component[]
    // tag::repositories[]
    publishing {
        // end::repositories[]
        publications {
            create<IvyPublication>("ivyJava") {
                from(components["java"])
            }
        }
    // end::publish-component[]
    // tag::repositories[]
        repositories {
            ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/groovy/buildSrc/src/main/groovy/myproject.publishing-conventions.gradle

    publishing {
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = "${rootProject.buildDir}/repo"
            }
        }
        publications {
            ivy(IvyPublication) {
                from components.java
                descriptor.description {
                    text = providers.provider({ description })
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishVersionRangeIntegTest.groovy

                ${emptyJavaClasspath()}
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                    }
                    publications {
                        ivy(IvyPublication) {
                            from components.java
                        }
                    }
                }
    
                dependencies {
                    api "group:projectA:latest.release"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorSpec.java

         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'ivy-publish'
         * }
         *
         * publishing {
         *   publications {
         *     ivy(IvyPublication) {
         *       descriptor {
         *         withXml {
         *           asNode().dependencies.dependency.find { it.@org == "junit" }.@rev = "4.10"
         *         }
         *       }
         *     }
         *   }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/plugin/build.gradle

    group 'org.gradle.sample'
    version '1.0'
    
    dependencies {
        implementation gradleApi()
    }
    
    publishing {
        repositories {
            ivy { url 'build/repo' }
        }
        publications {
            ivy(IvyPublication) {
                from components.java
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 309 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/groovy/build.gradle

    plugins {
        id 'ivy-publish'
    }
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    publishing {
    // tag::customize-descriptor[]
    // tag::versions-resolved[]
        publications {
            ivyCustom(IvyPublication) {
    // end::versions-resolved[]
                descriptor {
                    license {
                        name = 'The Apache License, Version 2.0'
                        url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/build.gradle.kts

    publishing {
        // end::customize-identity[]
        repositories {
            ivy {
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::customize-identity[]
        publications {
            create<IvyPublication>("ivy") {
                organisation = "org.gradle.sample"
                module = "project1-sample"
                revision = "1.1"
                descriptor.status = "milestone"
                descriptor.branch = "testing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 678 bytes
    - Viewed (0)
Back to top