Emmanuel Bourg pushed to branch upstream at Debian Java Maintainers / 
plexus-utils2


Commits:
52903542 by Emmanuel Bourg at 2022-09-27T13:57:50+02:00
New upstream version 3.3.1
- - - - -


2 changed files:

- pom.xml
- src/main/java/org/codehaus/plexus/util/AbstractScanner.java


Changes:

=====================================
pom.xml
=====================================
@@ -26,7 +26,7 @@ limitations under the License.
   </parent>
 
   <artifactId>plexus-utils</artifactId>
-  <version>3.3.0</version>
+  <version>3.3.1</version>
 
   <name>Plexus Common Utilities</name>
   <description>A collection of various utility classes to ease working with 
strings, files, command lines, XML and
@@ -37,7 +37,7 @@ limitations under the License.
     
<connection>scm:git:[email protected]:codehaus-plexus/plexus-utils.git</connection>
     
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-utils.git</developerConnection>
     <url>http://github.com/codehaus-plexus/plexus-utils</url>
-    <tag>plexus-utils-3.3.0</tag>
+    <tag>plexus-utils-3.3.1</tag>
   </scm>
   <issueManagement>
     <system>github</system>


=====================================
src/main/java/org/codehaus/plexus/util/AbstractScanner.java
=====================================
@@ -42,8 +42,8 @@
      * <li>SurroundSCM: &#42;&#42;/.MySCMServerInfo</li>
      * <li>Mac: &#42;&#42;/.DS_Store</li>
      * <li>Serena Dimension: &#42;&#42;/.metadata, 
&#42;&#42;/.metadata/&#42;&#42;</li>
-     * <li>Mercurial: &#42;&#42;/.hg, &#42;&#42;/.hg/&#42;&#42;, 
&#42;&#42;/.hgignore</li>
-     * <li>GIT: &#42;&#42;/.git, &#42;&#42;/.gitignore, 
&#42;&#42;/.gitattributes, &#42;&#42;/.git/&#42;&#42;</li>
+     * <li>Mercurial: &#42;&#42;/.hg, &#42;&#42;/.hg/&#42;&#42;</li>
+     * <li>Git: &#42;&#42;/.git, &#42;&#42;/.git/&#42;&#42;</li>
      * <li>Bitkeeper: &#42;&#42;/BitKeeper, &#42;&#42;/BitKeeper/&#42;&#42;, 
&#42;&#42;/ChangeSet,
      * &#42;&#42;/ChangeSet/&#42;&#42;</li>
      * <li>Darcs: &#42;&#42;/_darcs, &#42;&#42;/_darcs/&#42;&#42;, 
&#42;&#42;/.darcsrepo,
@@ -90,10 +90,10 @@
         "**/.metadata", "**/.metadata/**",
 
         // Mercurial
-        "**/.hg", "**/.hgignore", "**/.hg/**",
+        "**/.hg", "**/.hg/**",
 
         // git
-        "**/.git", "**/.gitignore", "**/.gitattributes", "**/.git/**",
+        "**/.git", "**/.git/**",
 
         // BitKeeper
         "**/BitKeeper", "**/BitKeeper/**", "**/ChangeSet", "**/ChangeSet/**",
@@ -124,7 +124,7 @@
      * @since 3.3.0
      */
     protected Comparator<String> filenameComparator;
-    
+
     /**
      * Sets whether or not the file system should be regarded as case 
sensitive.
      *
@@ -137,7 +137,7 @@ public void setCaseSensitive( boolean isCaseSensitive )
 
     /**
      * <p>Tests whether or not a given path matches the start of a given 
pattern up to the first "**".</p>
-     * 
+     *
      * <p>This is not a general purpose test and should only be used if you 
can live with false positives. For example,
      * <code>pattern=**\a</code> and <code>str=b</code> will yield 
<code>true</code>.</p>
      *
@@ -152,7 +152,7 @@ protected static boolean matchPatternStart( String pattern, 
String str )
 
     /**
      * <p>Tests whether or not a given path matches the start of a given 
pattern up to the first "**".</p>
-     * 
+     *
      * <p>This is not a general purpose test and should only be used if you 
can live with false positives. For example,
      * <code>pattern=**\a</code> and <code>str=b</code> will yield 
<code>true</code>.</p>
      *
@@ -223,7 +223,7 @@ protected static boolean match( String pattern, String str, 
boolean isCaseSensit
     /**
      * <p>Sets the list of include patterns to use. All '/' and '\' characters 
are replaced by
      * <code>File.separatorChar</code>, so the separator used need not match 
<code>File.separatorChar</code>.</p>
-     * 
+     *
      * <p>When a pattern ends with a '/' or '\', "**" is appended.</p>
      *
      * @param includes A list of include patterns. May be <code>null</code>, 
indicating that all files should be
@@ -252,7 +252,7 @@ public void setIncludes( String[] includes )
     /**
      * <p>Sets the list of exclude patterns to use. All '/' and '\' characters 
are replaced by
      * <code>File.separatorChar</code>, so the separator used need not match 
<code>File.separatorChar</code>.</p>
-     * 
+     *
      * <p>When a pattern ends with a '/' or '\', "**" is appended.</p>
      *
      * @param excludes A list of exclude patterns. May be <code>null</code>, 
indicating that no files should be



View it on GitLab: 
https://salsa.debian.org/java-team/plexus-utils2/-/commit/529035425948dc49e0c4cdd3fcc859d17c93ff8a

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/plexus-utils2/-/commit/529035425948dc49e0c4cdd3fcc859d17c93ff8a
You're receiving this email because of your account on salsa.debian.org.


_______________________________________________
pkg-java-commits mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to