- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 586 for groupId1 (0.04 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java
String pomXml = """ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"> <groupId>test</groupId> <artifactId>test</artifactId> <version>1.0.0</version> </project> """; Document document = Document.of(pomXml);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 19.6K bytes - Viewed (0) -
impl/maven-core/src/test/remote-repo/org/apache/maven/its/bom/0.1/bom-0.1.pom
<modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.its</groupId> <artifactId>bom</artifactId> <version>0.1</version> <packaging>pom</packaging> <name>Maven Integration Test :: Dummy BOM</name> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.maven.its</groupId> <artifactId>a</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 776 bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtils.java
* Convenience method to add GAV (groupId, artifactId, version) elements to a parent. * * @param parent the parent element (e.g., dependency or plugin) * @param groupId the groupId value * @param artifactId the artifactId value * @param version the version value (can be null to skip) * */ public static void addGAVElements(Element parent, String groupId, String artifactId, String version) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7.4K bytes - Viewed (0) -
compat/maven-artifact/pom.xml
<modelVersion>4.0.0</modelVersion> <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>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 2.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java
this.groupId = groupId; this.artifactId = artifactId; this.version = version; this.type = type; this.baseMessage = message; } public InvalidArtifactRTException( String groupId, String artifactId, String version, String type, String message, Throwable cause) { super(cause); this.groupId = groupId; this.artifactId = artifactId;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeStrategy.java
return null; } // GroupId and version can be inherited, but if still null, we can't create a valid Artifact if (groupId == null || groupId.isEmpty() || version == null || version.isEmpty()) { context.debug("Cannot determine complete GAV for artifactId: " + artifactId); return null; } return Coordinates.of(groupId, artifactId, version); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7.1K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-import-scope-type.xml
under the License. --> <project> <modelVersion>4.0.0</modelVersion> <artifactId>aid</artifactId> <groupId>gid</groupId> <version>0.1</version> <dependencyManagement> <dependencies> <dependency> <groupId>test</groupId> <artifactId>a</artifactId> <version>0.1</version> <scope>import</scope> <!-- missing type=pom -->
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/test/projects/project-dependencies-resolver/it0063/pom.xml
<modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.its.it0063</groupId> <artifactId>maven-it-it0063</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>Maven Integration Test :: it0063</name> <description>Test the use of a system scoped dependency to a (fake) tools.jar.</description> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/deprecated-dependency-metaversions-latest-and-release.xml
--> <project> <modelVersion>4.0.0</modelVersion> <groupId>gid</groupId> <artifactId>aid</artifactId> <version>0.1</version> <dependencies> <dependency> <groupId>test</groupId> <artifactId>a</artifactId> <version>LATEST</version> </dependency> <dependency> <groupId>test</groupId> <artifactId>b</artifactId> <version>RELEASE</version>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
} private Artifact createPluginArtifactX(String groupId, String artifactId, VersionRange versionRange) { return createArtifactX(groupId, artifactId, versionRange, "maven-plugin", null, Artifact.SCOPE_RUNTIME, null); } private Artifact createProjectArtifactX(String groupId, String artifactId, String version, String scope) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 33.5K bytes - Viewed (0)