Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getEffectiveScope (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java

                ArtifactFactory factory, Dependency dependency, String inheritedScope, ArtifactFilter inheritedFilter)
                throws InvalidVersionSpecificationException {
            String effectiveScope = getEffectiveScope(dependency.getScope(), inheritedScope);
    
            if (effectiveScope == null) {
                return null;
            }
    
            VersionRange versionRange = VersionRange.createFromVersionSpec(dependency.getVersion());
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                ArtifactFactory factory, Dependency dependency, String inheritedScope, ArtifactFilter inheritedFilter)
                throws InvalidVersionSpecificationException {
            String effectiveScope = getEffectiveScope(dependency.getScope(), inheritedScope);
    
            if (effectiveScope == null) {
                return null;
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 25 12:03:50 GMT 2025
    - 30.4K bytes
    - Click Count (0)
Back to Top