- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 423 for groupId2 (0.07 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContext.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-builder-support/pom.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven</groupId> <artifactId>maven</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> <artifactId>maven-builder-support</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/raw-model/self-referencing-classifier.xml
<modelVersion>4.0.0</modelVersion> <groupId>com.example.group</groupId> <artifactId>testvalidpom</artifactId> <version>0.0.1-SNAPSHOT</version> <description> This will test if the module validator recognized that this dependency with classifier is not the same as the module itself. </description> <dependencies> <dependency> <groupId>com.example.group</groupId> <artifactId>testvalidpom</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/raw-model/self-referencing.xml
<modelVersion>4.0.0</modelVersion> <groupId>com.example.group</groupId> <artifactId>testinvalidpom</artifactId> <version>0.0.1-SNAPSHOT</version> <description> This will test if the module validator recognized that this dependency is the same as the module itself. </description> <dependencies> <dependency> <groupId>com.example.group</groupId> <artifactId>testinvalidpom</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/projects/scope/transitive-default-dep.xml
<project> <modelVersion>4.0.0</modelVersion> <groupId>maven-test</groupId> <artifactId>scope-default</artifactId> <version>1.0</version> <dependencies> <dependency> <groupId>maven-test-default</groupId> <artifactId>scope-default</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test-default</groupId> <artifactId>scope-test</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/projects/scope/transitive-test-dep.xml
<project> <modelVersion>4.0.0</modelVersion> <groupId>maven-test</groupId> <artifactId>scope-test</artifactId> <version>1.0</version> <dependencies> <dependency> <groupId>maven-test-test</groupId> <artifactId>scope-default</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test-test</groupId> <artifactId>scope-test</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
* @param model The model to wrap, may be {@code null}. * @param groupId The effective group identifier of the model, may be {@code null}. * @param artifactId The effective artifact identifier of the model, may be {@code null}. * @param version The effective version of the model, may be {@code null}. */ ModelData(Source source, Model model, String groupId, String artifactId, String version) { this.source = source;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemUtils.java
* @return The user-friendly artifact id, never {@code null}. */ static String toId(String groupId, String artifactId, String version) { StringBuilder buffer = new StringBuilder(128); buffer.append((groupId != null && !groupId.isEmpty()) ? groupId : "[unknown-group-id]"); buffer.append(':'); buffer.append((artifactId != null && !artifactId.isEmpty()) ? artifactId : "[unknown-artifact-id]");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-c-1.0.pom
<project> <modelVersion>4.0.0</modelVersion> <groupId>maven-test</groupId> <artifactId>t07-c</artifactId> <packaging>jar</packaging> <version>1.0</version> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t07-d</artifactId> <version>1.1</version> <type>jar</type> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 432 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t08/p0/p1/pom.xml
<artifactId>p0</artifactId> <groupId>maven-t08</groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>maven-t08</groupId> <artifactId>p1</artifactId> <packaging>pom</packaging> <name>p1</name> <version>1.0</version> <scm> <url>scm-url</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>maven-test</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0)