Emmanuel Bourg pushed to branch master 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 - - - - - c4c99030 by Emmanuel Bourg at 2022-09-27T13:57:51+02:00 Update upstream source from tag 'upstream/3.3.1' Update to upstream version '3.3.1' with Debian dir cb914cc22ec61bc63a6a460a3d6ea9ffdae55b85 - - - - - d909eaea by Emmanuel Bourg at 2022-09-27T13:59:22+02:00 New upstream release (3.3.1) - - - - - 3 changed files: - debian/changelog - pom.xml - src/main/java/org/codehaus/plexus/util/AbstractScanner.java Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +plexus-utils2 (3.3.1-1) unstable; urgency=medium + + * Team upload. + * New upstream release + + -- Emmanuel Bourg <[email protected]> Tue, 27 Sep 2022 13:59:04 +0200 + plexus-utils2 (3.3.0-3) unstable; urgency=medium * Team upload. ===================================== 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: **/.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/-/compare/3e226aa8ea2d48ca95677e62fd58e65d295ba6f1...d909eaea0c6977c8ce65867aa0be0d1ecba5eb07 -- View it on GitLab: https://salsa.debian.org/java-team/plexus-utils2/-/compare/3e226aa8ea2d48ca95677e62fd58e65d295ba6f1...d909eaea0c6977c8ce65867aa0be0d1ecba5eb07 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

