- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 714 for groupIds (0.05 sec)
-
compat/maven-model-builder/src/test/resources/poms/validation/missing-dependency-version-pom.xml
under the License. --> <project> <modelVersion>4.0.0</modelVersion> <artifactId>foo</artifactId> <groupId>foo</groupId> <version>99.44</version> <packaging>bleh</packaging> <dependencies> <dependency> <artifactId>artifactId</artifactId> <groupId>groupId</groupId> </dependency> </dependencies>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
impl/maven-core/src/test/projects/project-builder/MNG-6983/pom.xml
<parent> <groupId>org.example</groupId> <artifactId>parent</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>./parent-pom.xml</relativePath> </parent> <artifactId>child</artifactId> <packaging>jar</packaging> <build> <plugins> <plugin> <groupId>${codehaus.groupId}</groupId>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 753 bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-listener/lifecycle-listener-dependency-injection/pom.xml
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.lifecycle-listener.test</groupId> <artifactId>simple</artifactId> <version>1.0</version> <properties> <foo>${injected}</foo> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.its.plugins</groupId> <artifactId>maven-it-plugin</artifactId> <version>0.1</version> <executions>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 678 bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-executor/mojo-configuration/pom.xml
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t06/maven-test/poms/t06-b-1.0.pom
<groupId>maven-test</groupId> <artifactId>t06-b</artifactId> <packaging>jar</packaging> <version>1.0</version> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t06-c</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>maven-test</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 622 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-dependency-version.xml
--> <project> <modelVersion>4.0.0</modelVersion> <artifactId>aid</artifactId> <groupId>gid</groupId> <version>0.1</version> <dependencies> <dependency> <groupId>test</groupId> <artifactId>a</artifactId> <version>0.2</version> </dependency> <dependency> <groupId>test</groupId> <artifactId>b</artifactId> <version>${missing.property}</version> </dependency>
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/depmgmt/junit-0.1.xml
<modelVersion>4.0.0</modelVersion> <groupId>org.junit</groupId> <artifactId>bom</artifactId> <version>0.1</version> <packaging>pom</packaging> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit</artifactId> <version>0.1</version>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 724 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/basedir-system-path.xml
<artifactId>aid</artifactId> <groupId>gid</groupId> <version>0.1</version> <dependencies> <dependency> <groupId>test</groupId> <artifactId>a</artifactId> <version>0.2</version> <scope>system</scope> <systemPath>${basedir}/lib/a.jar</systemPath> </dependency> <dependency> <groupId>test</groupId> <artifactId>b</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-model/pom.xml
</dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-xml</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <configuration> <version>4.2.0</version>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 16 12:39:59 UTC 2025 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java
public Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type) { return createArtifact(groupId, artifactId, version, scope, type, null, null); } @Override public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) { return createArtifact(groupId, artifactId, version, null, type, classifier, null);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.1K bytes - Viewed (0)