Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for GMM (0.02 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

                }
            """
    
            // POMs and GMM are already cached; querying for sources should do minimal additional work to fetch sources jars
            direct.artifact(classifier: 'sources').expectGet()
            transitive.artifact(classifier: 'sources').expectGet()
    
            succeeds( 'resolveSources')
        }
    
        def "direct has GMM and no sources jar and transitive has GMM and has sources jar"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    }
                    // The provider has GMM but we still allow classifier selection - even if the consumer has GMM as well.
                    // Although it is discouraged to use this feature with GMM alone, the behavior is helpful, if a provider
                    // starts publishing GMM but did not do so before.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractJavaProjectTestFixturesIntegrationTest.groovy

            and: "does not appear as a variant in Gradle Module metadata"
            GradleModuleMetadata gmm = new GradleModuleMetadata(file("build/repo/com/acme/root/1.3/root-1.3.module"))
            !gmm.variants.any { it.name == "testFixturesApiElements" }
            !gmm.variants.any { it.name == "testFixturesRuntimeElements" }
            gmm.variants.size() == 2
        }
    
        def "can consume test fixtures of an external module"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentInternal.java

         * interface called {@code ComponentWithChildren}. The existing {@code ComponentWithVariants} actually defines an API for
         * declaring child components, which contribute their variants as defined by this method, as remote variants in GMM.
         * <p>
         * This method and {@link UsageContext} should both be deprecated in favor of a new public API.
         */
        Set<? extends UsageContext> getUsages();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 17:57:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/JvmDerivedVariantsIntegrationTest.groovy

            file("consumer/build.gradle") << """
    repositories {
        mavenLocal {
            metadataSources {
                mavenPom()
                // ignore GMM to force derivation
                assert !isGradleMetadataEnabled()
            }
        }
    }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.gmm
    
    import org.gradle.integtests.fixtures.GradleMetadataResolveRunner
    import org.gradle.integtests.fixtures.RequiredFeature
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpec.java

    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.List;
    import java.util.Set;
    
    /**
     * A complete description of a GMM file that can be published without additional context.
     */
    public class ModuleMetadataSpec {
    
        final Identity identity;
        final List<Variant> variants;
        final boolean mustIncludeBuildId;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top