aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-11-17 10:30:53 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-11-17 10:30:53 +0000
commit717c91a482ef6ef905f190029ecd262036344b40 (patch)
tree998d58ed7407b7f0b04fbd587987425d370c242d /tests
parent05608c417ad5afd6ec911ef5e9a8dad7c97fb047 (diff)
downloadsonarqube-717c91a482ef6ef905f190029ecd262036344b40.tar.gz
sonarqube-717c91a482ef6ef905f190029ecd262036344b40.zip
use the shortcut mvn sonar:sonar in IT
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/tests/build.xml4
-rw-r--r--tests/integration/tests/pom.xml1
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/integration/tests/build.xml b/tests/integration/tests/build.xml
index 1b21d45cdca..df51a1ce847 100644
--- a/tests/integration/tests/build.xml
+++ b/tests/integration/tests/build.xml
@@ -163,7 +163,7 @@
<sequential>
<exec failonerror="@{failonerror}" executable="${maven.home}/bin/mvn.bat" osfamily="Windows">
- <arg line="org.codehaus.mojo:sonar-maven-plugin:1.0-beta-1:sonar @{args} -B -e"/>
+ <arg line="sonar:sonar @{args} -B -e"/>
<arg line="-f @{pom}"/>
<arg value='-Dsonar.jdbc.url="${sonar.jdbc.url}"'/>
<arg value="-Dsonar.jdbc.driver=${sonar.jdbc.driver}"/>
@@ -171,7 +171,7 @@
<arg value="-Dsonar.jdbc.password=${sonar.jdbc.password}"/>
</exec>
<exec failonerror="@{failonerror}" executable="${maven.home}/bin/mvn" osfamily="unix">
- <arg line="org.codehaus.mojo:sonar-maven-plugin:1.0-beta-1:sonar @{args} -B -e"/>
+ <arg line="sonar:sonar @{args} -B -e"/>
<arg line="-f @{pom}"/>
<arg value='-Dsonar.jdbc.url=${sonar.jdbc.url}'/>
<arg value="-Dsonar.jdbc.driver=${sonar.jdbc.driver}"/>
diff --git a/tests/integration/tests/pom.xml b/tests/integration/tests/pom.xml
index dd65e2eec88..fbad8a117e5 100644
--- a/tests/integration/tests/pom.xml
+++ b/tests/integration/tests/pom.xml
@@ -27,7 +27,6 @@
<plugin>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-dev-maven-plugin</artifactId>
- <version>0.7</version>
<executions>
<execution>
<id>start-server</id>