Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getPublishableArtifacts (0.31 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/tasks/PublishToIvyRepositoryTest.groovy

        }
    
        def "the publishableFiles of the publication are inputs of the task"() {
            given:
            def publishableFiles = project.layout.files("a", "b", "c")
    
            publication.getPublishableArtifacts() >> Mock(PublicationArtifactSet) {
                getFiles() >> publishableFiles
            }
    
            when:
            publish.publication = publication
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

            getInputs().files((Callable<FileCollection>) () -> {
                MavenPublicationInternal publicationInternal = getPublicationInternal();
                return publicationInternal == null ? null : publicationInternal.getPublishableArtifacts().getFiles();
            })
                .withPropertyName("publication.publishableFiles")
                .withPathSensitivity(PathSensitivity.NAME_ONLY);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

        ImmutableAttributes getAttributes();
    
        void setAlias(boolean alias);
    
        /**
         * Returns all publishable artifacts of this publication (read-only).
         */
        PublicationArtifactSet<T> getPublishableArtifacts();
    
        void allPublishableArtifacts(Action<? super T> action);
    
        void whenPublishableArtifactRemoved(Action<? super T> action);
    
        /**
         * Add a derived artifact for the supplied original artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top