Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,272 for artifactC (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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

    import org.gradle.api.Action
    import org.gradle.api.XmlProvider
    import org.gradle.api.artifacts.repositories.IvyArtifactRepository
    import org.gradle.api.internal.artifacts.DefaultImmutableModuleIdentifierFactory
    import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier
    import org.gradle.api.internal.artifacts.DependencyManagementTestUtil
    import org.gradle.api.internal.artifacts.repositories.metadata.IvyMutableModuleMetadataFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top