- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for createArtifactWithClassifier (0.08 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java
} @Test void testArtifactTouchFileName() throws Exception { ArtifactRepository localRepository = localRepository(); Artifact a = artifactFactory.createArtifactWithClassifier("groupId", "a", "0.0.1-SNAPSHOT", "jar", null); File file = new File(localRepository.getBasedir(), localRepository.pathOf(a)); a.setFile(file); assertEquals(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java
return createArtifact(groupId, artifactId, version, scope, type, null, null); } @Override public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) { return createArtifact(groupId, artifactId, version, null, type, classifier, null); } @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
ArtifactRepositoryPolicy releases) { return new MavenArtifactRepository(id, url, repositoryLayout, snapshots, releases); } @Override public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) { return new DefaultArtifact(groupId, artifactId, version, null, type, classifier, new TestArtifactHandler(type));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 12K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
} @Override public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) { return artifactFactory.createArtifactWithClassifier(groupId, artifactId, version, type, classifier); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0)