- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 576 for artifactId1 (1.17 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Writer.java
} if (coreExtension.getArtifactId() != null) { serializer .startTag(NAMESPACE, "artifactId") .text(coreExtension.getArtifactId()) .endTag(NAMESPACE, "artifactId"); } if (coreExtension.getVersion() != null) { serializer .startTag(NAMESPACE, "version")Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 6.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.2.0.xml
</properties> <build> <directory>${project.basedir}/target</directory> <outputDirectory>${project.build.directory}/classes</outputDirectory> <finalName>${project.artifactId}-${project.version}</finalName> <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Aug 07 14:31:13 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/e/0.1/e-0.1.jar
jar maven-core-it file:///${basedir}/repo true true . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.its.mng3906/e/pom.properties #Generated by Maven #Sun Dec 14 12:11:54 CET 2008 version=0.1 groupId=org.apache.maven.its.mng3906 artifactId=e...Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/PluginLifecycle.java
return Collections.singletonList(Plugin.newBuilder() .groupId(pluginDescriptor.getGroupId()) .artifactId(pluginDescriptor.getArtifactId()) .version(pluginDescriptor.getVersion()) .configuration(phase.getConfiguration())
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.1.0.xml
</properties> <build> <directory>${project.basedir}/target</directory> <outputDirectory>${project.build.directory}/classes</outputDirectory> <finalName>${project.artifactId}-${project.version}</finalName> <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Aug 07 14:31:13 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java
this(parent, type, null, artifactHandler); } @Override public void setArtifactId(String artifactId) { throw new UnsupportedOperationException( "Cannot change the artifactId for an attached artifact." + " It is derived from the main artifact."); } @Override public List<ArtifactVersion> getAvailableVersions() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java
*/ @Deprecated(since = "4.0.0") public interface ProjectBuildingResult { /** * Gets the identifier of the project that could not be built. The general format of the identifier is {@code * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception * is thrown so this information is merely meant to assist the user. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java
throw new MetadataResolutionException( "treenode without metadata, parent: " + (parent == null ? "null" : parent.toString())); } return md.groupId + ":" + md.artifactId; } // ------------------------------------------------------------------------ public boolean hasChildren() { return children != null; }
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/main/java/org/apache/maven/execution/ProjectActivation.java
*/ public class ProjectActivation { /** * ProjectActivationSettings * @param selector the selector of a project, which can be the project directory, [groupId]:[artifactId] or :[artifactId] * @param activationSettings describes how/when to active or deactivate the project */ public record ProjectActivationSettings(String selector, ActivationSettings activationSettings) {} /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
} static Plugin plugin(String coords, String phase) { String[] c = coords.split(":"); return Plugin.newBuilder() .groupId(c[0]) .artifactId(c[1]) .version(c[2]) .executions(Collections.singletonList(PluginExecution.newBuilder() .id("default-" + c[3]) .phase(phase)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 15:21:19 UTC 2025 - 8.4K bytes - Viewed (0)