- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for classifiers (0.06 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
String classifier = artifact.getClassifier(); if (Features.consumerPom(session.getUserProperties())) { if ("pom".equals(extension)) { if (classifier == null || classifier.isEmpty()) { classifier = "build"; } else if (classifier.equals("consumer")) { classifier = null; } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 20.3K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
<fields> <field> <name>classifier</name> <version>1.1.0+</version> <type>String</type> <description>The classifier of the sub-artifact. Each classifier and extension pair may only appear once.</description> <defaultValue></defaultValue> <identifier>true</identifier>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K 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 unspecified
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
apache-maven/pom.xml
<dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.inject</artifactId> <classifier>no_asm</classifier> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:41:46 UTC 2024 - 13.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
String groupId, String artifactId, VersionRange versionRange, String type, String classifier, String scope, boolean optional) { return createArtifactX(groupId, artifactId, versionRange, type, classifier, scope, null, optional); } private Artifact createProjectArtifactX(String groupId, String artifactId, String version) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
} @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)); } @Override public ArtifactRepository createDefaultLocalRepository() throws InvalidRepositoryException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12K bytes - Viewed (0)