Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createLocalArtifact (0.17 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

        }
    
        @Test
        void testTransitiveResolutionWhereAllArtifactsArePresentInTheLocalRepository() throws Exception {
            Artifact g = createLocalArtifact("g", "1.0");
    
            Artifact h = createLocalArtifact("h", "1.0");
    
            ArtifactResolutionResult result = artifactResolver.resolveTransitively(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

        // Test artifact generation for unit tests
        // ----------------------------------------------------------------------
    
        protected Artifact createLocalArtifact(String artifactId, String version) throws Exception {
            Artifact artifact = createArtifact(artifactId, version);
    
            createArtifact(artifact, localRepository());
    
            return artifact;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top