Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for IvyPublication (0.21 sec)

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

         * <p>
         * At this time, only repositories created by the {@code ivy()} factory method have any effect. Please see {@link org.gradle.api.publish.ivy.IvyPublication}
         * for information on how this can be used for publishing to Ivy repositories.
         *
         * @param configure The action to configure the container of repositories with.
         */
    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/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishEarIntegTest.groovy

                    repositories {
                        ivy {
                            url '${ivyRepo.uri}'
                        }
                    }
                    publications {
                        ivyEar(IvyPublication) {
                            configurations {
                                master {}
                                "default" {
                                    extend "master"
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultipleRepositoriesIntegTest.groovy

                apply plugin: 'ivy-publish'
    
                version = '2'
                group = 'org.gradle'
    
                publishing {
                    publications {
                        ivy(IvyPublication) {
                            from components.java
                            descriptor.description {
                                text = 'test module'
                            }
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/ivy/IvyPublishS3IntegrationTest.groovy

    version = '1.0'
    
    publishing {
        repositories {
            ivy {
                url "${ivyRepo.uri}"
                credentials(AwsCredentials)
            }
        }
        publications {
            ivy(IvyPublication) {
                from components.java
            }
        }
    }
    """
    
            when:
            def module = ivyRepo.module('org.gradle.test', 'publishS3Test', '1.0')
            module.jar.expectUpload()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfiguration.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy;
    
    import org.gradle.api.Named;
    
    import java.util.Set;
    
    /**
     * A configuration included in an {@link IvyPublication}, which will be published in the ivy descriptor file generated.
     */
    public interface IvyConfiguration extends Named {
    
        /**
         * Add the name of a configuration that this configuration extends.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

    version = 1.0
    group = "test.group"
    
    publishing {
        repositories {
            ivy { url uri("ivy-repo") }
            maven { url uri("maven-repo") }
        }
        publications {
            mainIvy(IvyPublication) {
                from components.java
                organisation 'test.org'
                module 'test-module'
                revision '1.1'
            }
            mainMaven(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyDependency.java

     */
    
    package org.gradle.api.publish.ivy;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A module dependency declared in an ivy dependency descriptor published as part of an {@link IvyPublication}.
     *
     * @deprecated This type is not referenced by any other public API classes. It will be removed in Gradle 9.0
     */
    @Deprecated
    @HasInternalProtocol
    public interface IvyDependency {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    To publish a distribution to an Ivy repository with the <<publishing_ivy.adoc#publishing_ivy, Ivy Publish Plugin>>, add one or both of its archive tasks to an link:{groovyDslPath}/org.gradle.api.publish.ivy.IvyPublication.html[IvyPublication]. The following sample demonstrates how to add the ZIP archive of the `main` distribution and the TAR archive of the `custom` distribution to the `myDistribution` publication:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

    import org.gradle.api.publish.PublishingExtension;
    import org.gradle.api.publish.internal.PublicationInternal;
    import org.gradle.api.publish.internal.versionmapping.VersionMappingStrategyInternal;
    import org.gradle.api.publish.ivy.IvyPublication;
    import org.gradle.api.publish.maven.MavenPublication;
    import org.gradle.api.publish.plugins.PublishingPlugin;
    import org.gradle.internal.component.external.model.ProjectDerivedCapability;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsPublishingIntegrationTest.groovy

            given:
            buildFile << testablePluginProject()
            buildFile << """
                apply plugin: 'ivy-publish'
    
                publishing {
                    publications {
                        ivyJava(IvyPublication) {
                            from components.java
                        }
                    }
                }
            """
    
            file('src/main/groovy/MyPlugin.groovy') << customGroovyPlugin()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top