[Git][java-team/plexus-utils2][upstream] New upstream version 3.3.1
Emmanuel Bourg (@ebourg)
gitlab at salsa.debian.org
Tue Sep 27 13:02:07 BST 2022
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:git at github.com:codehaus-plexus/plexus-utils.git</connection>
<developerConnection>scm:git:git at github.com: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: **/.MySCMServerInfo</li>
* <li>Mac: **/.DS_Store</li>
* <li>Serena Dimension: **/.metadata, **/.metadata/**</li>
- * <li>Mercurial: **/.hg, **/.hg/**, **/.hgignore</li>
- * <li>GIT: **/.git, **/.gitignore, **/.gitattributes, **/.git/**</li>
+ * <li>Mercurial: **/.hg, **/.hg/**</li>
+ * <li>Git: **/.git, **/.git/**</li>
* <li>Bitkeeper: **/BitKeeper, **/BitKeeper/**, **/ChangeSet,
* **/ChangeSet/**</li>
* <li>Darcs: **/_darcs, **/_darcs/**, **/.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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20220927/9dc3c6f2/attachment.htm>
More information about the pkg-java-commits
mailing list