- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 72 for getgroups (0.08 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
return getGroupId() + ':' + getArtifactId() + ':' + getExtension() + (c.isEmpty() ? "" : ":" + c) + ':' + getVersion(); } /** * {@return the group identifier of the artifact}. * * @see ArtifactCoordinates#getGroupId() */ @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java
String groupId; String artifactId; String version; String classifier; String type; String scope; transient Object datum; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getArtifactId() { return artifactId; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java
super(message, artifact, remoteRepositories); } public ArtifactNotFoundException(String message, Artifact artifact) { this( message, artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(), artifact.getType(), artifact.getClassifier(), null,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
} } } return version; } public static String versionlessKey(Artifact artifact) { return versionlessKey(artifact.getGroupId(), artifact.getArtifactId()); } public static String versionlessKey(String groupId, String artifactId) { notBlank(groupId, "groupId can neither be null, empty nor blank");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
/** * A request for creating a {@link ArtifactCoordinates} object. * * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactCoordinatesFactoryRequest extends Request<Session> { String getGroupId(); String getArtifactId(); String getVersion(); String getClassifier(); String getExtension(); String getType(); String getCoordinatesString(); @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java
* * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactCoordinates { /** * {@return the group identifier of the artifact}. */ @Nonnull String getGroupId(); /** * {@return the identifier of the artifact}. */ @Nonnull String getArtifactId(); /** * Returns the classifier of the artifact. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
protected AbstractArtifactResolutionException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable t) { this( message, artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(), artifact.getType(), artifact.getClassifier(), remoteRepositories,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 01 21:22:14 UTC 2025 - 10.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/mdo/core-extensions.mdo
* * @return The extension id in the form {@code <groupId>:<artifactId>:<version>}, never {@code null}. */ public String getId() { return (getGroupId() == null ? "[unknown-group-id]" : getGroupId()) + ":" + (getArtifactId() == null ? "[unknown-artifact-id]" : getArtifactId()) + ":" + (getVersion() == null ? "[unknown-version]" : getVersion()); } ]]>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 4.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
return builder() .session(requireNonNull(session, "session cannot be null")) .groupId(requireNonNull(coordinates, "coordinates cannot be null") .getGroupId()) .artifactId(coordinates.getArtifactId()) .version(coordinates.getVersionConstraint().toString()) .classifier(coordinates.getClassifier())
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java
} } @Override public boolean isMerged() { return merged; } @Override public String getGroupId() { return emptify(metadata.getGroupId()); } @Override public String getArtifactId() { return metadata.storedInGroupDirectory() ? "" : emptify(metadata.getArtifactId()); } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.5K bytes - Viewed (0)