Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for GMM (0.02 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataResolveIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.gmm
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import spock.lang.Issue
    
    class GradleModuleMetadataResolveIntegrationTest extends AbstractIntegrationSpec {
    
        @Issue("https://github.com/gradle/gradle/issues/26468")
        def "can consume gmm with dependency null or empty artifactSelector extension"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

        }
    
        def "doesn't write artifact metadata when metadata verification is disabled (gmm=#gmm)"() {
            createMetadataFile {
                noMetadataVerification()
            }
    
            given:
            javaLibrary()
            def foo = uncheckedModule("org", "foo", "1.0") {
                if (gmm) {
                    withModuleMetadata()
                }
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishIssuesIntegTest.groovy

                assert files*.name == []
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20581")
        void "warn deprecated behavior when GMM is modified after an Ivy publication is populated"() {
            given:
            buildFile << """
                plugins {
                    id("java-library")
                    id("ivy-publish")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    BUILD SUCCESSFUL in 331ms
    ----
    
    The `publishToMavenLocal` task builds the POM file and the artifacts to be published.
    It then _installs_ them into the local Maven repository.
    
    You can view the POM and GMM file in the `build` directory:
    
    image::tutorial/intellij-idea-dist.png[]
    
    You can also view the files in your Maven Local directory: `/Users/\[username]/.m2/repository/com/gradle/tutorial/tutorial/1.0`.
    
    [source,xml]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

                assert files*.name == []
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20581")
        void "warn deprecated behavior when GMM is modified after a Maven publication is populated"() {
            given:
            buildFile << """
                plugins {
                    id("java-library")
                    id("maven-publish")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

     *
     * <p>This builder extracts the variants, dependencies, artifacts, etc from the component to build
     * an independent representation of a GMM file that can be published without additional processing.</p>
     */
    public class ModuleMetadataSpecBuilder {
    
        private final PublicationInternal<?> publication;
        private final ModuleVersionIdentifier publicationCoordinates;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ----
    =====
    ====
    
    
    [[gmm_modification_after_publication_populated]]
    ==== Modifying Gradle Module Metadata after a publication has been populated
    
    Altering the link:publishing_gradle_module_metadata.html[GMM] (e.g., changing a component configuration variants) *after* a Maven or Ivy publication has been populated from their components is now deprecated.
    This feature will be removed in Gradle 9.0.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top