Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 588 for ivyA (0.04 sec)

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

     */
    
    package org.gradle.api.publish.ivy;
    
    import org.gradle.api.Action;
    import org.gradle.api.XmlProvider;
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * The descriptor of any Ivy publication.
     * <p>
     * Corresponds to the <a href="http://ant.apache.org/ivy/history/latest-milestone/ivyfile.html">XML version of the Ivy Module Descriptor</a>.
     * <p>
    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/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/ivy/IvyPublishS3IntegrationTest.groovy

            module.jar.sha512.expectUpload()
            module.ivy.expectUpload()
            module.ivy.sha1.expectUpload()
            module.ivy.sha256.expectUpload()
            module.ivy.sha512.expectUpload()
            module.moduleMetadata.expectUpload()
            module.moduleMetadata.sha1.expectUpload()
            module.moduleMetadata.sha256.expectUpload()
            module.moduleMetadata.sha512.expectUpload()
    
            succeeds 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    // limitations under the License.
    
    [[publishing_ivy]]
    = The Ivy Publish Plugin
    
    The Ivy Publish Plugin provides the ability to publish build artifacts in the http://ant.apache.org/ivy/[Apache Ivy] format, usually to a repository for consumption by other builds or projects. What is published is one or more artifacts created by the build, and an Ivy _module descriptor_ (normally `ivy.xml`) that describes the artifacts and the dependencies of the artifacts, if any.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            buildFile << """
                apply plugin: 'ivy-publish'
    
                group = 'group'
                version = '1.0'
    
                def comp = new TestComponent()
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                    }
                    publications {
                        ivy(IvyPublication) {
                            from comp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "Ivy repository based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
    """
    apply plugin: "base"
    
    version = 1.0
    group = "test.group"
    
    uploadArchives {
        repositories {
            ivy { url uri("ivy-repo") }
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepositoryTest.groovy

                ivyPatterns == ["https://host/[organisation]/[module]/[revision]/ivy-[revision].xml", 'https://host/[other]/ivy']
            }
        }
    
        def "uses artifact pattern for ivy files when no ivy pattern provided"() {
            repository.name = 'name'
            repository.url = 'https://host'
            repository.patternLayout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyModuleDescriptorSpecInternal.java

    import org.gradle.api.publish.ivy.IvyModuleDescriptorLicense;
    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;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedDependencyResolutionIntegrationTest.groovy

            module.ivy.expectHead()
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
    
            module.jar.expectHead()
            module.jar.sha1.expectGet()
            module.jar.expectGet()
        }
    
        void sha1OnlyRequests() {
            module.ivy.sha1.expectGet()
            module.jar.sha1.expectGet()
        }
    
        void sha1ThenGetRequests() {
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/IvyServices.java

    import org.gradle.api.publish.ivy.internal.publisher.ContextualizingIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.DependencyResolverIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.IvyDuplicatePublicationTracker;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.ValidatingIvyPublisher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

    import org.gradle.api.publish.ivy.InvalidIvyPublicationException;
    import org.gradle.api.publish.ivy.IvyArtifact;
    import org.gradle.api.publish.ivy.IvyConfiguration;
    import org.gradle.api.publish.ivy.IvyConfigurationContainer;
    import org.gradle.api.publish.ivy.IvyModuleDescriptorSpec;
    import org.gradle.api.publish.ivy.internal.artifact.DefaultIvyArtifactSet;
    import org.gradle.api.publish.ivy.internal.artifact.DerivedIvyArtifact;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
Back to top