Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for classifier (0.25 sec)

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

                this.version = version;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder classifier(String classifier) {
                this.classifier = classifier;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder extension(String extension) {
                this.extension = extension;
                return this;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

            this.extension = extension;
        }
    
        @Override
        public String getClassifier() {
            return classifier;
        }
    
        public void setClassifier(final String classifier) {
            this.classifier = classifier;
        }
    
        @Override
        public String getDirectory() {
            if (directory == null) {
                return getPackaging() + "s";
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

        private final String extension;
        private final String classifier;
        private final boolean includesDependencies;
        private final Set<PathType> pathTypes;
        private final Map<String, String> properties;
    
        public DefaultType(
                String id,
                Language language,
                String extension,
                String classifier,
                boolean includesDependencies,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            String classifier = artifact.getClassifier();
            String extension = artifact.getExtension();
            Path repo = getProjectLocalRepo();
            return repo.resolve(groupId)
                    .resolve(artifactId)
                    .resolve(version)
                    .resolve(artifactId
                            + "-" + version
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSnapshotMetadata.java

        public static Object getKey(Artifact artifact) {
            return artifact.getGroupId() + ':' + artifact.getArtifactId() + ':' + artifact.getBaseVersion();
        }
    
        protected String getKey(String classifier, String extension) {
            return classifier + ':' + extension;
        }
    
        @Override
        public String getGroupId() {
            return metadata.getGroupId();
        }
    
        @Override
        public String getArtifactId() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        @Nonnull
        String getExtension();
    
        /**
         * Get the default classifier associated to the dependency type.
         * The default classifier can be overridden when specifying
         * the {@link Dependency#getClassifier()}.
         *
         * @return the default classifier, or {@code null}.
         */
        @Nullable
        String getClassifier();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

                String groupId,
                String artifactId,
                String version,
                String classifier,
                String extension,
                String type) {
            return create(ArtifactCoordinateFactoryRequest.build(
                    session, groupId, artifactId, version, classifier, extension, type));
        }
    
        @Nonnull
        default ArtifactCoordinate create(@Nonnull Session session, Artifact artifact) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @param artifactId the artifact identifier, or {@code null} is unspecified
         * @param version the artifact version, or {@code null} is unspecified
         * @param classifier the artifact classifier, or {@code null} is unspecified
         * @param extension the artifact extension, or {@code null} is unspecified
         * @param type the artifact type, or {@code null} is unspecified
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RelocatedArtifact.java

            this.groupId = (groupId != null && !groupId.isEmpty()) ? groupId : null;
            this.artifactId = (artifactId != null && !artifactId.isEmpty()) ? artifactId : null;
            this.classifier = (classifier != null && !classifier.isEmpty()) ? classifier : null;
            this.extension = (extension != null && !extension.isEmpty()) ? extension : null;
            this.version = (version != null && !version.isEmpty()) ? version : null;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinate.java

        /**
         * The artifactId of the artifact.
         *
         * @return the artifactId
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * The classifier of the artifact.
         *
         * @return the classifier or an empty string if none, never {@code null}
         */
        @Nonnull
        String getClassifier();
    
        /**
         * The version of the artifact.
         *
         * @return the version
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top