aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-11-06 16:09:02 +0100
committerDavid Gageot <david@gageot.net>2012-11-06 16:09:02 +0100
commitef9e63fa87b0a4cc943b969f972217163241869e (patch)
tree1cdbc47ad87b1b0fb800b8649ad8e96bdf3c53bd
parent0ca3e750948ff947c6ab5918cb7f36c9ad0095bb (diff)
downloadsonarqube-ef9e63fa87b0a4cc943b969f972217163241869e.tar.gz
sonarqube-ef9e63fa87b0a4cc943b969f972217163241869e.zip
SONAR-3885 Documentation of inclusion patterns
-rw-r--r--plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
index c76959c32ae..e050a5305f7 100644
--- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
+++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
@@ -605,6 +605,10 @@ category.exclusions.help=<h2>Wildcards</h2>\
<td>?</td>\
<td>Match a single character</td>\
</tr>\
+ <tr class="even">\
+ <td>!</td>\
+ <td>Negates a pattern</td>\
+ </tr>\
</table>\
<p>Examples:</p>\
<table class="data">\
@@ -662,6 +666,17 @@ category.exclusions.help=<h2>Wildcards</h2>\
</ul>\
</td>\
</tr>\
+ <tr class="even">\
+ <td>!**/*Test.java</td>\
+ <td>matches all <code>.java</code> files whose name doesn't end with <code>Test</code></td>\
+ <td>\
+ <ul>\
+ <li>Foo.java</li>\
+ <li>foo/Bar.java</li>\
+ <li>foo/bar/Baz.java</li>\
+ </ul>\
+ </td>\
+ </tr>\
</table>
property.error.notBoolean=Valid options are "true" and "false"