- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 82 for classifierB (0.08 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalTestArtifactExtension.java
dependencies.add(sourceSet.getRuntimeElementsConfigurationName(), projectDependency); }); // PolicyUtil doesn't handle classifier notation well probably. // Instead of fixing PoliceUtil we stick to the pattern of changing // the basename here to indicate its a test artifacts jar.
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 29 07:15:49 GMT 2021 - 2.8K bytes - Click Count (0) -
compat/maven-embedder/pom.xml
<scope>provided</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 6.9K bytes - Click Count (0) -
apache-maven/pom.xml
<artifactId>org.eclipse.sisu.inject</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </dependency> </dependencies> <pluginRepositories>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 30 07:38:30 GMT 2026 - 13K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java
a = artifactFactory.createArtifactWithClassifier("groupId", "a", "0.0.1-SNAPSHOT", "jar", "classifier"); file = new File(localRepository.getBasedir(), localRepository.pathOf(a)); a.setFile(file); assertEquals( "a-0.0.1-SNAPSHOT-classifier.jar.lastUpdated", updateCheckManager.getTouchfile(a).getName()); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 9K bytes - Click Count (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(),Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Sep 04 18:33:16 GMT 2025 - 15.8K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/TypeCollector.java
} return root; } /** * Builds a unique key for an artifact based on the same identity components * used by conflict resolution: groupId, artifactId, extension, and classifier. */ static String conflictKey(DependencyNode node) { var a = node.getArtifact(); return a.getGroupId() + ':' + a.getArtifactId() + ':' + a.getExtension() + ':' + a.getClassifier(); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Mar 28 11:22:05 GMT 2026 - 3.6K bytes - Click Count (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
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 33.9K bytes - Click Count (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) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 7.8K bytes - Click Count (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>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Nov 26 10:37:56 GMT 2025 - 16.9K bytes - Click Count (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();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.9K bytes - Click Count (0)