Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for gav (0.33 sec)

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

        }
    
        void dependsOn(String notation) {
            def gav = notation.split(':')
            dependsOn(gav[0], gav[1], gav[2])
        }
    
        void dependsOn(String notation, @DelegatesTo(value=DependencySpec, strategy=Closure.DELEGATE_FIRST) Closure<?> config) {
            def gav = notation.split(':')
            dependsOn(gav[0], gav[1], gav[2], config)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

        static class GavCacheKey {
    
            private final String gav;
    
            private final String tag;
    
            private final int hash;
    
            GavCacheKey(String groupId, String artifactId, String version, String tag) {
                this(gav(groupId, artifactId, version), tag);
            }
    
            GavCacheKey(String gav, String tag) {
                this.gav = gav;
                this.tag = tag;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/RemoteRepositorySpec.groovy

            pathElements.each { String spec ->
                def gav = spec.split(':') as List<String>
                if (gav.size()==1) {
                    // name only
                    gav = ["org", gav[0], "1.0"]
                } else if (gav.size() == 2) {
                    // name, version
                    gav = ["org", *gav]
                }
                def (g, a, v) = gav
                group(g) {
                    module(a) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

        static class GavCacheKey {
    
            private final String gav;
    
            private final String tag;
    
            private final int hash;
    
            GavCacheKey(String groupId, String artifactId, String version, String tag) {
                this(gav(groupId, artifactId, version), tag);
            }
    
            GavCacheKey(String gav, String tag) {
                this.gav = gav;
                this.tag = tag;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

            'a custom suite'    | 'integTest' | 'integTest(JvmTestSuite)'
        }
        // endregion multiple GAV strings
        // endregion dependencies - modules (GAV)
    
        // region dependency constraints - modules (GAV)
        def 'can add dependency constraints to the implementation, compileOnly and runtimeOnly configurations of a suite using a GAV string'() {
            given:
            buildFile << """
            plugins {
              id 'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

        }
        // endregion multiple GAV strings
        // endregion dependencies - modules (GAV)
    
        // region dependency constraints - modules (GAV)
        def 'can add dependency constraints to the implementation, compileOnly and runtimeOnly configurations of a suite using a GAV string'() {
            given:
            buildKotlinFile << """
            plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/SnapshotMetadataGeneratorFactory.java

    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.impl.MetadataGenerator;
    import org.eclipse.aether.impl.MetadataGeneratorFactory;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Maven GAV level metadata generator factory.
     */
    @Named(SnapshotMetadataGeneratorFactory.NAME)
    @Singleton
    public class SnapshotMetadataGeneratorFactory implements MetadataGeneratorFactory {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

        }
    
        PluginPublicationResults publishAs(String coordinates, MavenRepository mavenRepo, GradleExecuter executer) {
            List<String> gav = Splitter.on(":").splitToList(coordinates)
            return publishAs(gav.get(0), gav.get(1), gav.get(2), mavenRepo, executer)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/SnapshotMetadataGeneratorFactory.java

    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.impl.MetadataGenerator;
    import org.eclipse.aether.impl.MetadataGeneratorFactory;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Maven GAV level metadata generator factory.
     */
    @Named(SnapshotMetadataGeneratorFactory.NAME)
    @Singleton
    public class SnapshotMetadataGeneratorFactory implements MetadataGeneratorFactory {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 08 14:15:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    == Declaring additional capabilities for a local component
    
    All components have an _implicit capability_ corresponding to the same GAV coordinates as the component.
    However, it is also possible to declare additional _explicit capabilities_ for a component.
    This is convenient whenever a library published at different GAV coordinates is an _alternate implementation_ of the same API:
    
    .Declaring capabilities of a component
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top