- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getArtifactPath (0.09 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
Path consumer = getArtifactPath( artifact.getGroupId(), artifact.getArtifactId(), artifact.getBaseVersion(), "consumer", "pom"); if (Files.isRegularFile(consumer)) { return consumer.toFile(); } } } Path target = getArtifactPath(artifact);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Dec 15 11:20:38 GMT 2025 - 24.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java
DownloadedArtifact resolved = session.resolveArtifact(coords); assertNotNull(resolved); assertNotNull(resolved.getPath()); Optional<Path> op = session.getArtifactPath(resolved); assertTrue(op.isPresent(), "Expected " + op + ".isPresent() to return true"); assertEquals(resolved.getPath(), op.get()); } @Test void testBuildProject() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 10.2K bytes - Click Count (0)