Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for grouping (0.16 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    import org.apache.maven.artifact.versioning.VersionRange;
    
    /**
     * Maven Artifact interface. Notice that it mixes artifact definition concepts (groupId, artifactId, version)
     * with dependency information (version range, scope).
     */
    public interface Artifact extends Comparable<Artifact> {
    
        String RELEASE_VERSION = "RELEASE";
    
        String LATEST_VERSION = "LATEST";
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Feb 09 17:47:51 GMT 2023
    - 4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

                    + getExtension()
                    + (getClassifier().isEmpty() ? "" : ":" + getClassifier())
                    + ':'
                    + getVersion();
        }
    
        /**
         * The groupId of the artifact.
         *
         * @return the groupId
         */
        @Nonnull
        String getGroupId();
    
        /**
         * The artifactId of the artifact.
         *
         * @return the artifactId
         */
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 15:48:33 GMT 2023
    - 3K bytes
    - Viewed (0)
Back to top