Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,826 for unpublished (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r47/BuildProgressCrossVersionSpec.groovy

                metadataDownloads = 2
                metadataChecksumDownloads = 2
            }
    
            def module = mavenHttpRepo.module('group', 'publish', '1')
    
            // module is published
            module.publish()
    
            // module will be published a second time via 'maven-publish'
            boolean isGradle6Plus = targetVersion.compareTo(GradleVersion.version("6.0")) >= 0
            module.artifact.expectPublish(isGradle6Plus)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 03:26:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.pom

        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <!-- This module was also published with a richer model, Gradle metadata,  -->
      <!-- which should be used instead. Do not delete the following line which  -->
      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do-not-remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1001 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectComponentPublication.java

        /**
         * Returns the component that is to be published, if relevant for this publication.
         */
        Provider<SoftwareComponentInternal> getComponent();
    
        /**
         * Specifies that this publication is just an alias for another one and should not
         * be considered when converting project dependencies to published metadata.
         */
        boolean isAlias();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/MetaDataParser.java

         * moved from publishing `pom` only to also publish `module` files.
         */
        String GRADLE_6_METADATA_MARKER = "do_not_remove: published-with-gradle-metadata";
        String[] GRADLE_METADATA_MARKER_COMMENT_LINES = {
                "This module was also published with a richer model, Gradle metadata, ",
                "which should be used instead. Do not delete the following line which ",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/output-ivy.xml

    <ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
      <!-- This module was also published with a richer model, Gradle metadata,  -->
      <!-- which should be used instead. Do not delete the following line which  -->
      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ArtifactHandler.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * This class is for defining artifacts to be published and adding them to configurations. Creating publish artifacts
     * does not mean to create an archive. What is created is a domain object which represents a file to be published
     * and information on how it should be published (e.g. the name).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifact.java

     * limitations under the License.
     */
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.publish.PublicationArtifact;
    
    import javax.annotation.Nullable;
    
    /**
     * An artifact published as part of a {@link MavenPublication}.
     */
    public interface MavenArtifact extends PublicationArtifact {
        /**
         * The extension used to publish the artifact file, never <code>null</code>.
    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/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyGradleMetadataRedirectionIntegrationTest.groovy

                repositories {
                    ivy { url "${ivyHttpRepo.uri}" }
                }
            """
            prepareResolution()
    
        }
    
        def "doesn't try to fetch Gradle metadata if published and marker is not present"() {
            given:
            createIvyFile(false)
    
            buildFile << """
                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/Publication.java

         * <p>
         * The build identifier is not published by default.
         *
         * @since 6.6
         */
        void withoutBuildIdentifier();
    
        /**
         * Enables publication of a unique build identifier in Gradle Module Metadata.
         * <p>
         * The build identifier is not published by default.
         *
         * @since 6.6
         */
        void withBuildIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenGradleMetadataRedirectionIntegrationTest.groovy

                repositories {
                    maven { url "${mavenHttpRepo.uri}" }
                }
            """
            prepareResolution()
        }
    
        def "doesn't try to fetch Gradle metadata if published and marker is not present"() {
            given:
            createPomFile(false)
    
            buildFile << """
                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top