- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 576 for artifactId1 (0.07 sec)
-
compat/maven-model-builder/src/test/resources/poms/inheritance/flat-urls-child.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>inheritance</groupId> <artifactId>parent</artifactId> <version>11-SNAPSHOT</version> </parent> <artifactId>inheritance</artifactId><!-- same as directory name --> <name>Model urls inheritance test child</name>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-child.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>inheritance</groupId> <artifactId>parent</artifactId> <version>11-SNAPSHOT</version> </parent> <artifactId>inheritance</artifactId><!-- same as directory name --> <name>Model urls inheritance test child</name>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-artifact/pom.xml
<parent> <groupId>org.apache.maven</groupId> <artifactId>maven-compat-modules</artifactId> <version>4.1.0-SNAPSHOT</version> </parent> <artifactId>maven-artifact</artifactId> <name>Maven Artifact</name> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java
mojoDescriptor.setGoal("goal"); PluginDescriptor pluginDescriptor = new PluginDescriptor(); pluginDescriptor.setGoalPrefix("goalPrefix"); pluginDescriptor.setArtifactId("artifactId"); mojoDescriptor.setPluginDescriptor(pluginDescriptor); Parameter parameter = new Parameter(); parameter.setType("java.lang.String[]"); parameter.setName("toAddresses");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
return addDependency(groupId, artifactId, version, scope, (Exclusion) null); } public ProjectBuilder addDependency( String groupId, String artifactId, String version, String scope, Exclusion exclusion) { return addDependency(groupId, artifactId, version, scope, null, exclusion); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 12.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
if (ind1 == -1 || ind2 == -1) { return; } this.groupId = name.substring(0, ind1); if (ind1 == ind2) { this.artifactId = name.substring(ind1 + 1); } else { this.artifactId = name.substring(ind1 + 1, ind2); this.version = name.substring(ind2 + 1); } } public ArtifactMetadata(String groupId, String name, String version) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/depmgmt/other-import.xml
<modelVersion>4.0.0</modelVersion> <groupId>test</groupId> <artifactId>other-import</artifactId> <version>0.1-SNAPSHOT</version> <packaging>pom</packaging> <dependencyManagement> <dependencies> <dependency> <groupId>test</groupId> <artifactId>mydep</artifactId> <version>0.3</version> </dependency>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 732 bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java
super( constructMissingArtifactMessage( message, "", groupId, artifactId, version, type, classifier, downloadUrl, path), groupId, artifactId, version, type, classifier, remoteRepositories, null, cause); this.downloadUrl = downloadUrl;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/module-b/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 257 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
this.artifactId = (artifactId != null) ? artifactId : ""; this.version = (version != null) ? version : ""; } /** * Creates a new exception with specified detail message. * * @param message The detail message, may be {@code null}. * @param groupId The group id of the unresolvable model, may be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.9K bytes - Viewed (0)