Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,826 for unpublished (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

        /**
         * Asserts pom and module files have not been published.
         */
        void assertNotPublished()
    
        /**
         * Asserts pom and module files are published correctly. Does not verify artifacts.
         */
        void assertPublished()
    
        /**
         * Asserts exactly pom and jar published, along with checksums.
         * If created {@link #withModuleMetadata()}, module file is also expected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/PublishArtifact.java

        /**
         * Returns the extension of this published artifact. Often the extension is the same as the type,
         * but sometimes this is not the case. For example for an ivy XML module descriptor, the type is
         * ivy and the extension is xml.
         *
         * @return The extension. Never null.
         */
        String getExtension();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 14:42:31 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

        void removeDerivedArtifact(T artifact);
    
        /**
         * Provide the file coordinates for the published artifact, if any.
         *
         * @param source The original PublishArtifact
         * @return The name and URI of the published file, or `null` if the source artifact is not published.
         */
        PublishedFile getPublishedFile(PublishArtifact source);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     * </p><p>
     * To add additional artifacts to the set published, use the {@link #artifact(Object)} and {@link #artifact(Object, org.gradle.api.Action)} methods.
     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over the artifacts to be published.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * The published component is used to determine which artifacts to publish, and which dependencies should be listed in the generated POM file.
     * </p><p>
     * To add additional artifacts to the set published, use the {@link #artifact(Object)} and {@link #artifact(Object, org.gradle.api.Action)} methods.
     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledInitScript.kt

    @Deprecated("Kept for compatibility with precompiled script plugins published with Gradle versions prior to 6.0")
    open class PrecompiledInitScript(target: Gradle) : @Suppress("deprecation") InitScriptApi(target) {
    
        init {
            DeprecationLogger.deprecateBehaviour("Applying a Kotlin DSL precompiled script plugin published with Gradle versions < 6.0.")
                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishAndResolveIntegrationTest.groovy

                            url '${ivyRepo.uri}'
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "can resolve static dependency published by a dependent task in the same project"() {
            given:
            buildFile << """
                ${taskWhichPublishes('api', '1.1')}
                ${taskWhichResolves('api', '1.1')}
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

        }
    
        /**
         * The publication to be published.
         *
         * @return The publication to be published
         */
        @Internal
        public MavenPublication getPublication() {
            return publication.get();
        }
    
        /**
         * Sets the publication to be published.
         *
         * @param publication The publication to be published
         */
        public void setPublication(MavenPublication publication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledSettingsScript.kt

    @Deprecated("Kept for compatibility with precompiled script plugins published with Gradle versions prior to 6.0")
    open class PrecompiledSettingsScript(target: Settings) : @Suppress("deprecation") SettingsScriptApi(target) {
    
        init {
            DeprecationLogger.deprecateBehaviour("Applying a Kotlin DSL precompiled script plugin published with Gradle versions < 6.0.")
                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

        void assertPublished();
    
        /**
         * Asserts that exactly the given artifacts, plus checksum files, have been published.
         */
        void assertArtifactsPublished(String... names);
    
        /**
         * Assert that exactly the ivy.xml and jar file for this module, plus checksum files, have been published.
         */
        void assertIvyAndJarFilePublished();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top