diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-03-25 11:13:33 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-03-25 11:13:33 +0100 |
commit | 74342ad049a98c9a2cf4621373bedee22736c612 (patch) | |
tree | 634ffe96138e7f131e750d2c19292b7425c2f952 | |
parent | 38e9fbb23cd9600e6886307695c9bf87f5547951 (diff) | |
download | sonarqube-74342ad049a98c9a2cf4621373bedee22736c612.tar.gz sonarqube-74342ad049a98c9a2cf4621373bedee22736c612.zip |
Fix definition of JS files to be analyzed
-rw-r--r-- | sonar-server/pom.xml | 4 |
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> |