summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-02-18 14:22:09 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-02-18 14:22:09 +0100
commit7975f4777901956c93ca2f08606415840a682816 (patch)
treeaf1c621fe3e9ad66d6189c5266fa5f0cf9c3bf23 /plugins
parent5a1634e38b510c684868cfe96185929622010ece (diff)
downloadsonarqube-7975f4777901956c93ca2f08606415840a682816.tar.gz
sonarqube-7975f4777901956c93ca2f08606415840a682816.zip
Fix inclusions by absolute path and improve documentation
Diffstat (limited to 'plugins')
-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 1749b118a8a..a8d5adf82d6 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
@@ -674,10 +674,15 @@ category.exclusions.help=<h2>Wildcards</h2>\
<td>?</td>\
<td>Match a single character</td>\
</tr>\
+ <tr class="even">\
+ <td>file:</td>\
+ <td>Prefix to define a pattern based on absolute path</td>\
+ </tr>\
</table>\
<p>Examples:</p>\
<table class="data">\
<thead><tr><th>Filter</th><th>Description</th><th>Matches</th></tr></thead>\
+ <tbody>\
<tr class="odd">\
<td>org/mycompany/*.java</td>\
<td>matches all <code>.java</code> files in the <code>org/mycompany</code> directory</td>\
@@ -731,6 +736,16 @@ category.exclusions.help=<h2>Wildcards</h2>\
</ul>\
</td>\
</tr>\
+ <tr class="even">\
+ <td>file:**/generated/**</td>\
+ <td>matches all files whose one parent directory is 'generated'.</td>\
+ <td>\
+ <ul>\
+ <li>/path/to/project/tmp/generated/org/castor/Model.java</li>\
+ </ul>\
+ </td>\
+ </tr>\
+ </tbody>\
</table>
property.sonar.skippedModules.name=Exclude project modules from code analysis