- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for ArtifactScopeEnum (0.07 sec)
-
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; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.2K bytes - Viewed (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);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5K bytes - Viewed (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() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 13K bytes - Viewed (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);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 7.4K bytes - Viewed (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 {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.1K bytes - Viewed (0)