- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 902 for groupID (0.07 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java
if (md == null) { 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
guava/module.json
}, { "group": "com.google.code.findbugs", "module": "jsr305", "version": { "requires": "${jsr305.version}" } }, { "group": "org.checkerframework", "module": "checker-qual", "version": { "requires": "${checker.version}" } }, { "group": "com.google.errorprone",
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Sep 23 17:17:08 UTC 2024 - 8.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java
return createArtifact("org.apache.maven", artifactId, version, type); } protected Artifact createArtifact(String groupId, String artifactId, String version, String type) throws Exception { Artifact a = artifactFactory.createBuildArtifact(groupId, artifactId, version, type); return a; } protected void deleteLocalArtifact(Artifact artifact) throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
* </p> * * @since 4.0.0 */ @Experimental @Immutable public interface Artifact { /** * {@return a unique identifier for this artifact} * The identifier is composed of groupId, artifactId, extension, classifier, and version. * * @see ArtifactCoordinates#getId() */ @Nonnull default String key() { String c = getClassifier(); return getGroupId()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 4.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
* followed by <dfn>flattening</dfn> and <dfn>resolution</dfn>. * The version selection is done for each dependency during the collection phase. * The flatten phase will keep only a single version per ({@code groupId}, {@code artifactId}) pair. * The resolution will actually download the dependencies (or artifacts) that have been computed. * * @since 4.0.0 */ @Experimental @Immutable
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<codeSegments> <codeSegment> <version>2.0.0+</version> <code><![CDATA[ public String getPluginLookupKey() { return groupId + ":" + artifactId; } public String getId() { return groupId + ":" + artifactId + ":" + version; } ]]></code> </codeSegment> </codeSegments> </class>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
assertThat(merged.getContributors(), contains(contributor)); } @Test void mergeSameDependencies() { Dependency dependency = Dependency.newBuilder() .groupId("groupId") .artifactId("artifactId") .type("type") .build(); Model target = Model.newBuilder().dependencies(Arrays.asList(dependency)).build();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
remove(project.dependencies.gradleTestKit()) } } publishing.publications.withType<MavenPublication>().configureEach { if (name == "pluginMaven") { groupId = project.group.toString() artifactId = moduleIdentity.baseName.get() } pom { licenses { license { name = "The Apache License, Version 2.0"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 6.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
} return result.getRawModel(); } /** * Gets the identifier of the POM whose effective model 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java
source.setGroupId("source-group"); source.setVersion("2.0"); assertFalse(target.merge(source)); assertEquals("myArtifact", target.getArtifactId()); assertEquals("myGroup", target.getGroupId()); assertEquals("1.0-SNAPSHOT", target.getVersion()); } /*--- END test common metadata ---*/ /*--- START test "groupId/artifactId/version" metadata ---*/ @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.7K bytes - Viewed (0)