diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-01-24 19:06:38 +0100 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-01-24 19:25:01 +0100 |
commit | 878cec92f8e39fd46628a83bba970293129de710 (patch) | |
tree | 8234845025634f6e8d589fc1ef5df79f4bb4fe12 /tests | |
parent | eb9462d6002daf7f01f8fe627b4517c065bdb5af (diff) | |
download | sonarqube-878cec92f8e39fd46628a83bba970293129de710.tar.gz sonarqube-878cec92f8e39fd46628a83bba970293129de710.zip |
SONAR-791 When the source directory is not exactly the java package root, Sonar should stop the analysis
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/tests/build.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/tests/build.xml b/tests/integration/tests/build.xml index 75bad16d20f..29f2fcfe14a 100644 --- a/tests/integration/tests/build.xml +++ b/tests/integration/tests/build.xml @@ -179,6 +179,7 @@ <arg value="-Dsonar.jdbc.driver=${sonar.jdbc.driver}"/> <arg value="-Dsonar.jdbc.username=${sonar.jdbc.username}"/> <arg value="-Dsonar.jdbc.password=${sonar.jdbc.password}"/> + <arg value="-Dsonar.hardIndexLock=true"/> </exec> <exec failonerror="@{failonerror}" executable="${maven.home}/bin/mvn" osfamily="unix"> <arg line="org.codehaus.mojo:sonar-maven-plugin:1.0-beta-2:sonar @{args} -B -e"/> @@ -187,6 +188,7 @@ <arg value="-Dsonar.jdbc.driver=${sonar.jdbc.driver}"/> <arg value="-Dsonar.jdbc.username=${sonar.jdbc.username}"/> <arg value="-Dsonar.jdbc.password=${sonar.jdbc.password}"/> + <arg value="-Dsonar.hardIndexLock=true"/> </exec> </sequential> </macrodef> |