Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,443 for artifactC (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomRelocationIntegrationTest.groovy

            'groupB'          | 'artifactB'          | 'groupB'   | 'artifactB'
            'groupB'          | null                 | 'groupB'   | 'artifactA'
            null              | 'artifactB'          | 'groupA'   | 'artifactB'
        }
    
        def "can resolve module with relocated version"() {
            given:
            def moduleB = mavenHttpRepo.module('groupB', 'artifactB').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java

            Artifact artifact = factory.createDependencyArtifact(
                    "test-grp", "test-artifact", VersionRange.createFromVersion("1.0"), "type", null, "system", "provided");
            Artifact artifact2 = factory.createDependencyArtifact(
                    "test-grp", "test-artifact-2", VersionRange.createFromVersion("1.0"), "type", null, "system", "test");
            Artifact artifact3 = factory.createDependencyArtifact(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactBackedResolvedVariantTest.groovy

            def set1 = of([artifact1, artifact2])
            def set2 = of([artifact1])
    
            when:
            set1.artifacts.visitDependencies(visitor)
    
            then:
            1 * visitor.add(artifact1)
            1 * visitor.add(artifact2)
            0 * visitor._
    
            when:
            set2.artifacts.visitDependencies(visitor)
    
            then:
            1 * visitor.add(artifact1)
            0 * visitor._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. releasenotes/notes/artifact-naming.yaml

    kind: feature
    area: installation
    issue:
    - 45677
    releaseNotes:
    - |
      **Added** amd64 named artifacts for MacOS and Windows. The amd64 flavor of the artifacts didgit push not contain the
      architecture in the name as we do for the other operating systems. This makes the artifact naming consistent.
      **Deprecated** the MacOS and Windows artifacts without an architecture specified in the name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 07 17:15:40 UTC 2023
    - 611 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultPublishArtifactSetTest.groovy

            given:
            store.add(artifact1)
            store.add(artifact2)
            _ * artifact1.file >> file1
            _ * artifact2.file >> file2
    
            expect:
            set.files.files == [file1, file2] as Set
        }
    
        def "files are built by the union of the tasks that build the publish artifacts"() {
            PublishArtifact artifact1 = Mock()
            PublishArtifact artifact2 = Mock()
            Task task1 = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            Artifact artifact2 = mock(Artifact.class);
            when(artifact2.getFile()).thenReturn(null);
            when(artifact2.getGroupId()).thenReturn("group1");
            when(artifact2.getArtifactId()).thenReturn("artifact2");
            when(artifact2.getExtension()).thenReturn("ext");
            when(artifact2.getClassifier()).thenReturn("classifier1");
            when(artifact2.getVersion()).thenReturn("1");
            artifacts.add(artifact2);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java

            Artifact artifact = new DefaultArtifact(
                    groupId, artifactId, VersionRange.createFromVersion("5.0"), scope, type, classifier, artifactHandler);
            assertTrue(artifact.compareTo(artifact1) == 0);
            assertTrue(artifact1.compareTo(artifact) == 0);
        }
    
        @Test
        void testNonResolvedVersionRangeConsistentlyYieldsNullVersions() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 22 19:19:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

                if (diff != 0) {
                    return diff;
                }
                diff = artifact1.getType().compareTo(artifact2.getType());
                if (diff != 0) {
                    return diff;
                }
                // Use an arbitrary ordering when the artifacts have the same public attributes
                return Integer.compare(artifact1.hashCode(), artifact2.hashCode());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

            child.artifacts == variantDef.artifacts
        }
    
        def "converts to OutgoingVariant when explicit variant and artifacts defined"() {
            def artifact1 = Stub(PublishArtifact)
            def artifact2 = Stub(PublishArtifact)
    
            given:
            publications.artifacts.add(artifact1)
            publications.attributes.attribute(Attribute.of("thing", String), "value1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

        }
    
        /**
         * The groupId of the artifact.
         *
         * @return the groupId
         */
        @Nonnull
        String getGroupId();
    
        /**
         * The artifactId of the artifact.
         *
         * @return the artifactId
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * The version of the artifact.
         *
         * @return the version
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 15:48:33 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top