Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPathMatcher (0.22 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java

        }
    
        private static Predicate<Artifact> toPredicate(Exclusion exclusion) {
            PathMatcher groupId = FileSystems.getDefault().getPathMatcher("glob:" + exclusion.getGroupId());
            PathMatcher artifactId = FileSystems.getDefault().getPathMatcher("glob:" + exclusion.getArtifactId());
            Predicate<Artifact> predGroupId = a -> groupId.matches(createPathProxy(a.getGroupId()));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Aug 29 15:25:58 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

            an artifact to the project.
            <p>
            The {@code groupId} and {@code artifactId} fields are interpreted as glob patterns.
    
            @see java.nio.file.FileSystem#getPathMatcher
            ]]>
          </description>
          <fields>
            <field>
              <name>groupId</name>
              <version>4.0.0+</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top