aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2014-03-25 11:13:33 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2014-03-25 11:13:33 +0100
commit74342ad049a98c9a2cf4621373bedee22736c612 (patch)
tree634ffe96138e7f131e750d2c19292b7425c2f952
parent38e9fbb23cd9600e6886307695c9bf87f5547951 (diff)
downloadsonarqube-74342ad049a98c9a2cf4621373bedee22736c612.tar.gz
sonarqube-74342ad049a98c9a2cf4621373bedee22736c612.zip
Fix definition of JS files to be analyzed
-rw-r--r--sonar-server/pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml
index 70f4082261e..7bec0a7e095 100644
--- a/sonar-server/pom.xml
+++ b/sonar-server/pom.xml
@@ -15,8 +15,8 @@
<gruntTask>default</gruntTask>
<!-- self-analysis -->
- <sonar.sources>src/main/java,src/main/webapp/js</sonar.sources>
- <sonar.exclusions>src/main/webapp/js/third-party/*,src/main/webapp/js/tests,src/main/webapp/js/require.js</sonar.exclusions>
+ <sonar.sources>src/main/java,src/main/js</sonar.sources>
+ <sonar.exclusions>src/main/js/third-party/**/*,src/main/js/require.js,src/main/js/tests/**/*</sonar.exclusions>
</properties>
<dependencies>