- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for classifierB (0.04 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java
} return pomArtifact; } /** * Creates POM artifact out of passed in artifact by dropping classifier (if exists) and rewriting extension to * "pom". Unconditionally, unlike {@link #toPomArtifact(Artifact)} that does this only for artifacts without * classifiers. * * @since 4.0.0 */ public static Artifact toPomArtifactUnconditionally(Artifact artifact) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 4K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
this.scope = scope; this.type = type; if (classifier == null) { classifier = artifactHandler.getClassifier(); } this.classifier = classifier; this.optional = optional; validateIdentity(); } private void validateIdentity() { if (empty(groupId)) { throw new InvalidArtifactRTException(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 14.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java
// Packaging/Directory is Maven1 remnant!!! // assertEquals(handler.getPackaging(), packaging, type + " packaging"); assertEquals(handler.getClassifier(), classifier, type + " classifier"); assertEquals(handler.getLanguage(), language, type + " language"); assertEquals(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
// to avoid treating a build POM as a repository (consumer) POM. if ("pom".equals(artifact.getExtension())) { String classifier = artifact.getClassifier(); if (classifier == null || classifier.isEmpty()) { Path consumer = getArtifactPath( artifact.getGroupId(), artifact.getArtifactId(), artifact.getBaseVersion(), "consumer", "pom");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/RepositorySystemTest.java
assertEquals( "jar", depArtifact.getProperty("type", null)); // shouldn't it be java-sources given the classifier? assertEquals( "true", depArtifact.getProperty("constitutesBuildPath", null)); // shouldn't it be false given the classifier? assertEquals("false", depArtifact.getProperty("includesDependencies", null));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 9.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java
DeployRequest request = createDeployRequestWithConsumerPom(); DeployRequest result = transformer.remapDeployArtifacts(session, request); // Should have both consumer POM (no classifier) and build POM (with "build" classifier) Collection<Artifact> artifacts = result.getArtifacts(); assertEquals(3, artifacts.size()); // original jar + consumer pom + build pom
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Nov 06 18:32:25 UTC 2025 - 13.3K bytes - Viewed (0) -
compat/maven-resolver-provider/pom.xml
<scope>provided</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> <scope>provided</scope> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 10:37:56 UTC 2025 - 6.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java
String classifier, String extension) { super( source.getGroupId(), source.getArtifactId(), source.getVersionRange(), source.getScope(), extension, classifier, new TransformedArtifactHandler(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Nov 06 18:32:25 UTC 2025 - 4.8K bytes - Viewed (0) -
impl/maven-core/src/site/apt/artifact-handlers.apt
define for each {{{../../api/maven-api-model/maven.html#class_dependency}dependency type}} information on the artifact (classifier, extension, language) and how to manage it as dependency (add to classpath, include dependencies).Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 18:16:44 UTC 2025 - 4.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* @param artifactId the artifact identifier, or {@code null} is unspecified * @param version the artifact version, or {@code null} is unspecified * @param classifier the artifact classifier, or {@code null} is unspecified * @param extension the artifact extension, or {@code null} is unspecified * @param type the artifact type, or {@code null} is unspecifiedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0)