Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for key2 (0.14 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

         * The identifier is composed of groupId, artifactId, extension, classifier, and version.
         *
         * @return the unique identifier
         */
        @Nonnull
        default String key() {
            return getGroupId()
                    + ':'
                    + getArtifactId()
                    + ':'
                    + getExtension()
                    + (getClassifier().isEmpty() ? "" : ":" + getClassifier())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 15 15:48:33 GMT 2023
    - 3K bytes
    - Viewed (0)
Back to top