- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for assertLocalArtifactPresent (1.08 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java
assertEquals(2, result.getArtifacts().size()); assertTrue(result.getArtifacts().contains(g)); assertTrue(result.getArtifacts().contains(h)); assertLocalArtifactPresent(g); assertLocalArtifactPresent(h); } @Test void testTransitiveResolutionWhereAllArtifactsAreNotPresentInTheLocalRepositoryAndMustBeRetrievedFromTheRemoteRepository()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 10.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java
File file = new File(remoteRepo.getBasedir(), path); assertTrue(file.exists(), "Remote artifact " + file + " should be present."); } protected void assertLocalArtifactPresent(Artifact artifact) throws Exception { ArtifactRepository localRepo = localRepository(); String path = localRepo.pathOf(artifact); File file = new File(localRepo.getBasedir(), path);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 09:40:15 UTC 2025 - 13.8K bytes - Viewed (0)