Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for PublishToIvyRepository (0.33 sec)

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

    /**
     * Publishes an IvyPublication to an IvyArtifactRepository.
     *
     * @since 1.3
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PublishToIvyRepository extends DefaultTask {
        private final Transient.Var<IvyPublicationInternal> publication = varOf();
        private final Transient.Var<DefaultIvyArtifactRepository> repository = varOf();
    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/documentation/docs/src/docs/dsl/org.gradle.api.publish.ivy.tasks.PublishToIvyRepository.xml

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

            }
    
            when:
            publish.publication = publication
    
            then:
            getInputFiles(publish).files == publishableFiles.files
        }
    
        PublishToIvyRepository createPublish(String name) {
            project.tasks.create(name, PublishToIvyRepository)
        }
    
    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/conditional-publishing/groovy/build.gradle

        dependsOn tasks.withType(PublishToIvyRepository).matching {
            it.repository == publishing.repositories.external
        }
    }
    tasks.register('publishToInternalRepository') {
        group "publishing"
        description "Publishes all Ivy publications to Ivy repository 'internal'."
        dependsOn tasks.withType(PublishToIvyRepository).matching {
            it.repository == publishing.repositories.internal
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

    import org.gradle.api.publish.ivy.internal.versionmapping.DefaultVersionMappingStrategy;
    import org.gradle.api.publish.ivy.tasks.GenerateIvyDescriptor;
    import org.gradle.api.publish.ivy.tasks.PublishToIvyRepository;
    import org.gradle.api.publish.plugins.PublishingPlugin;
    import org.gradle.api.publish.tasks.GenerateModuleMetadata;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.tasks.TaskContainer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_setup.adoc

    What follows is a practical example that demonstrates the entire publishing process.
    
    [[sec:basic_publishing]]
    == Setting up basic publishing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    `publish__PubName__PublicationTo__RepoName__Repository` — link:{groovyDslPath}/org.gradle.api.publish.ivy.tasks.PublishToIvyRepository.html[PublishToIvyRepository]::
    Publishes the _PubName_ publication to the repository named _RepoName_. If you have a repository definition without an explicit name, _RepoName_ will be "Ivy".
    
    `publish`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    [[sec:configuring_publishing_tasks]]
    == Configuring publishing tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            expectPublishModuleWithCredentials(module, credentials)
    
            when:
            buildFile << """
            tasks.withType(PublishToIvyRepository).configureEach {
                outputs.upToDateWhen { true }
            }
            """
    
            then:
            succeeds 'publish'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.publish.ivy.tasks.PublishToIvyRepository.getPublication()> does not have raw return type assignable to org.gradle.api.provider.Property in (PublishToIvyRepository.java:0)
    Method <org.gradle.api.publish.ivy.tasks.PublishToIvyRepository.getRepository()> does not have raw return type assignable to org.gradle.api.provider.Property in (PublishToIvyRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top