Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for GMM (0.02 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                        isLast()
                    }
                }
            }
        }
    
        def "dependencies with multiple dependency artifacts are mapped to multiple dependency declarations in GMM"() {
            given:
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                plugins {
                    id("java-library")
                    id("maven-publish")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    ====
    
    With the changes above, the generated Gradle Module Metadata file will always be different, forcing downstream tasks to consider it out-of-date.
    
    [[sub:disabling-gmm-publication]]
    == Disabling Gradle Module Metadata publication
    
    There are situations where you might want to disable publication of Gradle Module Metadata:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

                }
    
                $append
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies with multiple dependency artifacts are mapped to multiple dependency declarations in GMM"() {
            def repoModule = javaLibrary(ivyRepo.module('group', 'root', '1.0'))
    
            given:
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: "java-library"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            def dependency = dependencies.values().first()
            dependency.groupId == "org.jetbrains.kotlinx"
            dependency.artifactId == "kotlinx-coroutines-core-jvm"
            dependency.version == "1.7.2"
    
            // GMM continues to use component coordinates
            def gmmDependencies = repoModule.parsedModuleMetadata.variant("runtimeElements").dependencies
            gmmDependencies.size() == 1
            def gmmDependency = gmmDependencies.first()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

        }
    
        private expectModuleServed(MavenHttpModule module, boolean pom, boolean gmm) {
            if (module.version.endsWith('-SNAPSHOT')) {
                module.metaData.expectGet()
            }
            if (pom) {
                module.pom.expectGet()
            }
            if (gmm) {
                module.moduleMetadata.expectGet()
            }
            module.artifact.expectGet()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  8. 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)
  9. 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