Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Spring (0.14 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

            }
        }
    
        public ArtifactMetadata(String groupId, String name, String version) {
            this(groupId, name, version, null);
        }
    
        public ArtifactMetadata(String groupId, String name, String version, String type) {
            this(groupId, name, version, type, null);
        }
    
        public ArtifactMetadata(String groupId, String name, String version, String type, ArtifactScopeEnum artifactScope) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.6K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java

         */
        boolean storedInGroupDirectory();
    
        String getGroupId();
    
        String getArtifactId();
    
        String getBaseVersion();
    
        Object getKey();
    
        /**
         * Get the filename of this metadata on the local repository.
         *
         * @param repository the remote repository it came from
         * @return the filename
         */
        String getLocalFilename(ArtifactRepository repository);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
Back to top