- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 869 for groupID (0.08 sec)
-
compat/maven-compat/src/test/resources/inheritance-repo/t01/maven.t01/poms/p3-1.0.pom
<project> <parent> <artifactId>p2</artifactId> <groupId>maven.t01</groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>maven.t01</groupId> <artifactId>p3</artifactId> <packaging>pom</packaging> <name>p3</name> <version>1.0</version> <organization> <name>p3-org</name> </organization>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 365 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t06/p0/pom.xml
<groupId>maven-test</groupId> <artifactId>t06-b</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t06-c</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t06-d</artifactId> <version>1.2</version> <scope>test</scope>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 992 bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java
super(); } @Test void testResolveParentThrowsUnresolvableModelExceptionWhenNotFound() throws Exception { final Parent parent = Parent.newBuilder() .groupId("ut.simple") .artifactId("artifact") .version("0") .build(); UnresolvableModelException e = assertThrows( UnresolvableModelException.class,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.6K bytes - Viewed (0) -
impl/maven-cli/pom.xml
<dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-jline</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>commons-cli</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:40:16 UTC 2024 - 3.8K bytes - Viewed (0) -
guava/pom.xml
</dependency> <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> </dependency> <dependency> <groupId>com.google.j2objc</groupId> <artifactId>j2objc-annotations</artifactId> </dependency>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 18:53:31 UTC 2024 - 9.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ArtifactModelSource.java
} public ArtifactModelSource(Path path, String groupId, String artifactId, String version) { super(path); this.groupId = groupId; this.artifactId = artifactId; this.version = version; this.hashCode = Objects.hash(groupId, artifactId, version); } public String getGroupId() { return groupId; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/raw-model/missing-ga-pluginManagement.xml
<modelVersion>4.0.0</modelVersion> <groupId>com.example.group</groupId> <artifactId>testinvalidpom</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <pluginManagement> <plugins> <plugin> <groupId></groupId> <artifactId/> </plugin> </plugins> </pluginManagement> </build>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-a-2.0.pom
<project> <modelVersion>4.0.0</modelVersion> <groupId>maven-test</groupId> <artifactId>t05-a</artifactId> <packaging>jar</packaging> <version>2.0</version> <repositories> <repository> <id>central</id> <name>Fake Maven Central Repository</name> <url>file://dummy</url> </repository> </repositories> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t05-b</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 572 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
} private void validateIdentity() { if (empty(groupId)) { throw new InvalidArtifactRTException( groupId, artifactId, getVersion(), type, "The groupId cannot be empty."); } if (empty(artifactId)) { throw new InvalidArtifactRTException( groupId, artifactId, getVersion(), type, "The artifactId cannot be empty."); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.6K bytes - Viewed (0)