- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 428 for groupId2 (0.1 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java
* model builder. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelCache { <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data); <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
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-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
*/ @Deprecated(since = "4.0.0") public interface ModelResolver { /** * Tries to resolve the POM for the specified coordinates. * * @param groupId The group identifier of the POM, must not be {@code null}. * @param artifactId The artifact identifier of the POM, must not be {@code null}. * @param version The version of the POM, must not be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.1K bytes - Viewed (0) -
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) -
src/main/java/jcifs/pac/PacLogonInfo.java
this.logonCount = pacStream.readShort(); this.badPasswordCount = pacStream.readShort(); // IDs for user SID userId = pacStream.readId(); SID groupId = pacStream.readId(); // Groups information int groupCount = pacStream.readInt(); int groupPointer = pacStream.readInt(); // User flags about PAC Logon Info content
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K 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) -
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) -
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) -
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) -
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)