Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,272 for artifactA (0.13 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            def requestedModule = mavenHttpRepo.module("groupA", "artifactA", "1.2").publish()
            requestedModule.pomFile.text = """
    <project>
        <groupId>groupA</groupId>
        <artifactId>artifactA</artifactId>
        <version>1.2</version>
        <dependencies>
            <dependency>
                <groupId>groupB</groupId>
                <artifactId>artifactB</artifactId>
            </dependency>
        </dependencies>
        <profiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/22279")
        def "can resolve POM as an artifact after a relocation"() {
            given:
            def original = mavenHttpRepo.module('groupA', 'artifactA', '1.0').publishPom()
            original.pomFile.text = """
    <project>
        <groupId>groupA</groupId>
        <artifactId>artifactA</artifactId>
        <version>1.0</version>
        <distributionManagement>
            <relocation>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultVersionResolverTest.java

            VersionRequest requestB = new VersionRequest();
            requestB.addRepository(newTestRepository());
            Artifact artifactB =
                    new DefaultArtifact("org.apache.maven.its", "dep-mng5324", "classifierB", "jar", "07.20.3-SNAPSHOT");
            requestB.setArtifact(artifactB);
    
            VersionResult resultB = versionResolver.resolveVersion(session, requestB);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            expect:
            dependency.getParentArtifacts(parent) as List == [artifact1, artifact2, artifact3, artifact4, artifact5, artifact6, artifact7]
        }
    
        def artifact(String name, String classifier, String type, String extension) {
            ResolvedArtifact artifact = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

        }
    
        def "artifact is attached to child configurations"() {
            given:
            def artifact1 = artifactName()
            def artifact2 = artifactName()
            def artifact3 = artifactName()
            def file1 = new File("artifact-1.zip")
            def file2 = new File("artifact-2.zip")
            def file3 = new File("artifact-3.zip")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            expect:
            metadata.dependencyArtifacts.size() == 3
            def artifacts = metadata.dependencyArtifacts
            artifacts[0] == artifact1
            artifacts[1] == artifact2
            artifacts[2] == artifact3
        }
    
        def "returns empty set of artifacts when dependency descriptor does not declare any artifacts for source configuration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top