- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 416 for groupSids (0.2 sec)
-
api/maven-api-plugin/src/test/java/org/apache/maven/api/plugin/descriptor/another/ExtendedPluginDescriptorTest.java
// make sure to call the subclasses' builder methods first, otherwise fluent API would not work builder.additionalField("additional") .groupId("org.apache.maven") .artifactId("maven-plugin-api") .version("1.0.0"); ExtendedPluginDescriptor descriptor = builder.build();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 07:05:43 UTC 2024 - 2.7K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java
* * @return the location */ public String getLocation() { return this.location; } /** * Get the identifier of the POM in the format {@code <groupId>:<artifactId>:<version>}. * * @return the model id */ public String getModelId() { return this.modelId; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 3.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java
* * @since 4.0.0 */ @Experimental public interface ProjectBuilderResult { /** * Gets the identifier of the project that 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: Tue Jun 11 07:23:04 UTC 2024 - 2.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java
public ModelBuilderResult getResult() { return result; } /** * 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: Wed Oct 02 21:26:05 UTC 2024 - 3K bytes - Viewed (0) -
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) -
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) -
guava/module.json
{ "formatVersion": "1.1", "component": { "group": "${pom.groupId}", "module": "${pom.artifactId}", "version": "${pom.version}", "attributes": { "org.gradle.status": "${module.status}" } }, "createdBy": { "maven": { "version": "${maven.version}", "buildId": "${maven.build.version}" } }, "variants": [ { "name": "${variant.jvmEnvironmentVariantName}ApiElements",
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-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) -
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)