- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for artifactId2 (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
pom.xml
<artifactId>httpmime</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </exclusion> <exclusion> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> </exclusion> <exclusion> <groupId>javax.activation</groupId> <artifactId>javax.activation-api</artifactId>
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 20 08:30:43 GMT 2025 - 49.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
List<Plugin> plugins, String artifactId, String expectedId, String expectedConfig) { Plugin plugin = plugins.stream() .filter(p -> p.getArtifactId().equals(artifactId)) .findFirst() .orElse(null); assertNotNull(plugin, "Unable to find plugin with artifactId: " + artifactId); List<PluginExecution> pluginExecutions = plugin.getExecutions();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 94.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
continue; } if (artifactId == null || artifactId.length() <= 0) { problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage("'dependencyManagement.dependencies.dependency.artifactId' for " + dependency.getManagementKey() + " is missing.")Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
ModelBuildingRequest request) { // We only check for groupId/artifactId/version/classifier cause if there is another // module with the same groupId/artifactId/version/classifier this will fail the build // earlier like "Project '...' is duplicated in the reactor. // So it is sufficient to check only groupId/artifactId/version/classifier and not the // packaging type.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 03 15:06:05 GMT 2025 - 66.8K bytes - Click Count (0) -
docs/changelogs/changelog_3x.md
constant is included for completeness. * New: Upgrade to Okio 1.14.0. ```xml <dependency> <groupId>com.squareup.okio</groupId> <artifactId>okio</artifactId> <version>1.14.0</version> </dependency> com.squareup.okio:okio:1.14.0 ``` * Fix: Handle `HTTP/1.1 100 Continue` status lines, even on requests that didCreated: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 14:55:54 GMT 2022 - 50.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
+ "<modelVersion>4.0.0</modelVersion>" + "<groupId>" + artifact.getGroupId() + "</groupId>" + "<artifactId>" + artifact.getArtifactId() + "</artifactId>" + "<version>" + artifact.getBaseVersion() + "</version>" + "<packaging>" + artifact.getType() + "</packaging>" + "</project>";
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 51.8K bytes - Click Count (0)