- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for createArtifactWithClassifier (0.08 sec)
-
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/ArtifactFactory.java
@Deprecated String ROLE = ArtifactFactory.class.getName(); Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type); Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier); Artifact createDependencyArtifact(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
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/main/java/org/apache/maven/repository/RepositorySystem.java
Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type); Artifact createProjectArtifact(String groupId, String artifactId, String version); Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier); Artifact createPluginArtifact(Plugin plugin); Artifact createDependencyArtifact(Dependency dependency);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0)