Codebase list plexus-utils2 / c4c9903
Update upstream source from tag 'upstream/3.3.1' Update to upstream version '3.3.1' with Debian dir cb914cc22ec61bc63a6a460a3d6ea9ffdae55b85 Emmanuel Bourg 1 year, 7 months ago
2 changed file(s) with 11 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
2525 </parent>
2626
2727 <artifactId>plexus-utils</artifactId>
28 <version>3.3.0</version>
28 <version>3.3.1</version>
2929
3030 <name>Plexus Common Utilities</name>
3131 <description>A collection of various utility classes to ease working with strings, files, command lines, XML and
3636 <connection>scm:git:git@github.com:codehaus-plexus/plexus-utils.git</connection>
3737 <developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-utils.git</developerConnection>
3838 <url>http://github.com/codehaus-plexus/plexus-utils</url>
39 <tag>plexus-utils-3.3.0</tag>
39 <tag>plexus-utils-3.3.1</tag>
4040 </scm>
4141 <issueManagement>
4242 <system>github</system>
4141 * <li>SurroundSCM: &#42;&#42;/.MySCMServerInfo</li>
4242 * <li>Mac: &#42;&#42;/.DS_Store</li>
4343 * <li>Serena Dimension: &#42;&#42;/.metadata, &#42;&#42;/.metadata/&#42;&#42;</li>
44 * <li>Mercurial: &#42;&#42;/.hg, &#42;&#42;/.hg/&#42;&#42;, &#42;&#42;/.hgignore</li>
45 * <li>GIT: &#42;&#42;/.git, &#42;&#42;/.gitignore, &#42;&#42;/.gitattributes, &#42;&#42;/.git/&#42;&#42;</li>
44 * <li>Mercurial: &#42;&#42;/.hg, &#42;&#42;/.hg/&#42;&#42;</li>
45 * <li>Git: &#42;&#42;/.git, &#42;&#42;/.git/&#42;&#42;</li>
4646 * <li>Bitkeeper: &#42;&#42;/BitKeeper, &#42;&#42;/BitKeeper/&#42;&#42;, &#42;&#42;/ChangeSet,
4747 * &#42;&#42;/ChangeSet/&#42;&#42;</li>
4848 * <li>Darcs: &#42;&#42;/_darcs, &#42;&#42;/_darcs/&#42;&#42;, &#42;&#42;/.darcsrepo,
8989 "**/.metadata", "**/.metadata/**",
9090
9191 // Mercurial
92 "**/.hg", "**/.hgignore", "**/.hg/**",
92 "**/.hg", "**/.hg/**",
9393
9494 // git
95 "**/.git", "**/.gitignore", "**/.gitattributes", "**/.git/**",
95 "**/.git", "**/.git/**",
9696
9797 // BitKeeper
9898 "**/BitKeeper", "**/BitKeeper/**", "**/ChangeSet", "**/ChangeSet/**",
123123 * @since 3.3.0
124124 */
125125 protected Comparator<String> filenameComparator;
126
126
127127 /**
128128 * Sets whether or not the file system should be regarded as case sensitive.
129129 *
136136
137137 /**
138138 * <p>Tests whether or not a given path matches the start of a given pattern up to the first "**".</p>
139 *
139 *
140140 * <p>This is not a general purpose test and should only be used if you can live with false positives. For example,
141141 * <code>pattern=**\a</code> and <code>str=b</code> will yield <code>true</code>.</p>
142142 *
151151
152152 /**
153153 * <p>Tests whether or not a given path matches the start of a given pattern up to the first "**".</p>
154 *
154 *
155155 * <p>This is not a general purpose test and should only be used if you can live with false positives. For example,
156156 * <code>pattern=**\a</code> and <code>str=b</code> will yield <code>true</code>.</p>
157157 *
222222 /**
223223 * <p>Sets the list of include patterns to use. All '/' and '\' characters are replaced by
224224 * <code>File.separatorChar</code>, so the separator used need not match <code>File.separatorChar</code>.</p>
225 *
225 *
226226 * <p>When a pattern ends with a '/' or '\', "**" is appended.</p>
227227 *
228228 * @param includes A list of include patterns. May be <code>null</code>, indicating that all files should be
251251 /**
252252 * <p>Sets the list of exclude patterns to use. All '/' and '\' characters are replaced by
253253 * <code>File.separatorChar</code>, so the separator used need not match <code>File.separatorChar</code>.</p>
254 *
254 *
255255 * <p>When a pattern ends with a '/' or '\', "**" is appended.</p>
256256 *
257257 * @param excludes A list of exclude patterns. May be <code>null</code>, indicating that no files should be