- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 75 for aClassifier (0.05 sec)
-
compat/maven-compat/pom.xml
<artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> <!-- only for backward compatibility otherwhise would be test--> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 8.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
} ArtifactHandler handler = newHandler(artifact); /* * NOTE: From Artifact.hasClassifier(), an empty string and a null both denote "no classifier". However, some * plugins only check for null, so be sure to nullify an empty classifier. */ org.apache.maven.artifact.Artifact result = new org.apache.maven.artifact.DefaultArtifact( artifact.getGroupId(),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 04 18:33:16 UTC 2025 - 15.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
SimpleProblemCollector result = validateRaw("bad-import-scope-classifier.xml"); assertViolations(result, 0, 1, 0); assertContains( result.getErrors().get(0), "'dependencyManagement.dependencies.dependency.classifier' for test:a:pom:cls must be empty"); } @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 33.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java
} } } } return plugins.values(); } private PluginInfo extractPluginInfo(Artifact artifact) { // sanity: jar, no classifier and file exists if (artifact != null && "jar".equals(artifact.getExtension()) && "".equals(artifact.getClassifier()) && artifact.getPath() != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.8K bytes - Viewed (0) -
impl/maven-core/pom.xml
<scope>provided</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> <scope>provided</scope> </dependency> <!-- Plexus Utils + XML --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 10:37:56 UTC 2025 - 16.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java
"sample.group", "sample-art", VersionRange.createFromVersion("1.0"), "scope", "jar", "classifier", null); artifact.setFile(getTestFile("target/sample-art")); StringWagon wagon = (StringWagon) wagonManager.getWagon("string"); wagon.clearExpectedContent();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java
default -> throw new IllegalArgumentException("Bad artifact coordinates " + coords + ", expected format is <groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>"); }; return s; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
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) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
} @Override public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) { return artifactFactory.createArtifactWithClassifier(groupId, artifactId, version, type, classifier); } @Override public Artifact createProjectArtifact(String groupId, String artifactId, String metaVersionId) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java
private static final String KEY1A = "mvn\\:foo/bar"; private static final String KEY2 = "foo:bar:version:type:classifier"; private static final String KEY2A = "foo\\:bar\\:version\\:type\\:classifier"; private static final String VALUE1 = "value"; private MavenProperties properties; static final String TEST_PROPERTIES = """ # # test.propertiesRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 16.4K bytes - Viewed (0)