- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 75 for aClassifier (0.06 sec)
-
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/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java
private final String extension; private final String classifier; private final boolean includesDependencies; private final Set<PathType> pathTypes; private final Map<String, String> properties; public DefaultType( String id, Language language, String extension, String classifier, boolean includesDependencies,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K 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) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.java
public static Object getKey(Artifact artifact) { return artifact.getGroupId() + ':' + artifact.getArtifactId() + ':' + artifact.getBaseVersion(); } protected String getKey(String classifier, String extension) { return classifier + ':' + extension; } @Override public String getGroupId() { return metadata.getGroupId(); } @Override public String getArtifactId() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K 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/Artifact.java
*/ @Nonnull Version getBaseVersion(); /** * Returns the classifier of the artifact. * * @return the classifier or an empty string if none, never {@code null} * @see ArtifactCoordinates#getClassifier() */ @Nonnull String getClassifier(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
private String extension; private String classifier; public Artifact(String groupId, String artifactId, String version, String extension, String classifier) { this.groupId = groupId; this.artifactId = artifactId; this.version = version; this.extension = extension; this.classifier = classifier; } public String getGroupId() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 16.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java
* @param artifactFile artifact file. * @param artifactClassifier artifact classifier. */ void attachArtifact(MavenProject project, File artifactFile, String artifactClassifier); /** * * See {@link #attachArtifact(MavenProject, String, String, java.io.File)}, but with classifier set to null. * @param project project reference. * @param artifactType artifact type.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java
@Nonnull String getGroupId(); /** * {@return the identifier of the artifact}. */ @Nonnull String getArtifactId(); /** * Returns the classifier of the artifact. * * @return the classifier or an empty string if none, never {@code null} */ @Nonnull String getClassifier(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0)