- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for ArtifactScopeEnum (0.13 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
} public void setType(String type) { this.type = type; } public ArtifactScopeEnum getArtifactScope() { return artifactScope == null ? ArtifactScopeEnum.DEFAULT_SCOPE : artifactScope; } public void setArtifactScope(ArtifactScopeEnum artifactScope) { this.artifactScope = artifactScope; } public void setScope(String scope) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
public ClasspathContainer(ArtifactScopeEnum scope) { this.scope = ArtifactScopeEnum.checkScope(scope); } // ------------------------------------------------------------------------------------------- public ClasspathContainer(List<ArtifactMetadata> classpath, ArtifactScopeEnum scope) { this(scope); this.classpath = classpath; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 4.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphVertex.java
if (v == 0) { if (compareScope) { String s1 = ArtifactScopeEnum.checkScope(md.artifactScope) .getScope(); String s2 = ArtifactScopeEnum.checkScope(vmd.artifactScope) .getScope(); return s1.compareTo(s2);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java
try { // edge case - single vertex graph if (vertices.size() == 1) { return new MetadataGraph(entry); } final ArtifactScopeEnum requestedScope = ArtifactScopeEnum.checkScope(scope); MetadataGraph res = new MetadataGraph(vertices.size()); res.setVersionedVertices(false); res.setScopedVertices(false);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 7.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
// scoped graph is versioned by definition if (scopedVertices) { versionedVertices = true; } } public ArtifactScopeEnum getScope() { return scope; } public void setScope(ArtifactScopeEnum scope) { this.scope = scope; } // ------------------------------------------------------------------------ public boolean isEmpty() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 13K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
import javax.inject.Inject; import javax.inject.Named; import javax.inject.Singleton; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.apache.maven.artifact.ArtifactScopeEnum; /** * default implementation of the metadata classpath transformer * * */ @Named @Singleton @Deprecated public class DefaultClasspathTransformation implements ClasspathTransformation {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.1K bytes - Click Count (0)