Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetVersion (0.26 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifact.java

        }
    
        @Nonnull
        @Override
        public String getArtifactId() {
            return artifact.getArtifactId();
        }
    
        @Nonnull
        @Override
        public Version getVersion() {
            return session.parseVersion(artifact.getVersion());
        }
    
        @Override
        public Version getBaseVersion() {
            return session.parseVersion(artifact.getBaseVersion());
        }
    
        @Nonnull
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifact.java

        }
    
        @Nonnull
        @Override
        public String getArtifactId() {
            return artifact.getArtifactId();
        }
    
        @Nonnull
        @Override
        public Version getVersion() {
            return session.parseVersion(artifact.getVersion());
        }
    
        @Override
        public Version getBaseVersion() {
            return session.parseVersion(artifact.getBaseVersion());
        }
    
        @Nonnull
        @Override
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:35 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

            if (empty(groupId)) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The groupId cannot be empty.");
            }
    
            if (artifactId == null) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
            if (type == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
Back to top