- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setClassifier (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
StringBuilder sb = new StringBuilder(128); sb.append(artifact.getArtifactId()); sb.append('-').append(artifact.getBaseVersion()); if (artifact.getClassifier() != null) { sb.append('-').append(artifact.getClassifier()); } sb.append('.').append(artifact.getType()).append(LAST_UPDATE_TAG); return new File(artifact.getFile().getParentFile(), sb.toString()); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 9.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
} private File findInProjectLocalRepository(Artifact artifact) { // Prefer the consumer POM when resolving POMs from the project-local repository, // to avoid treating a build POM as a repository (consumer) POM. if ("pom".equals(artifact.getExtension())) { String classifier = artifact.getClassifier();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
? session.parseVersion(project.getVersion()).toString() : artifact.getBaseVersion().toString(), artifact.getClassifier(), artifact.getExtension(), null); } // Verify groupId and version, intentionally allow artifactId to differ as Maven project may be
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 10.9K bytes - Viewed (0)