aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects
diff options
context:
space:
mode:
authorGodin <mandrikov@gmail.com>2010-09-22 14:56:42 +0000
committerGodin <mandrikov@gmail.com>2010-09-22 14:56:42 +0000
commiteceb6ccea0dc3310d21f33e89a7dd1ebcb9bc885 (patch)
tree2215d5fd42e1f96304bc6984776cc78ec071748b /subprojects
parent2edad37f21fa6d38253a73da2b6925c115975151 (diff)
downloadsonarqube-eceb6ccea0dc3310d21f33e89a7dd1ebcb9bc885.tar.gz
sonarqube-eceb6ccea0dc3310d21f33e89a7dd1ebcb9bc885.zip
SONAR-1804: Downgrade cargo version to 1.0-beta-2
Diffstat (limited to 'subprojects')
-rw-r--r--subprojects/sonar-dev-maven-plugin/pom.xml28
1 files changed, 27 insertions, 1 deletions
diff --git a/subprojects/sonar-dev-maven-plugin/pom.xml b/subprojects/sonar-dev-maven-plugin/pom.xml
index 8827a0509cb..4b5eefe57b3 100644
--- a/subprojects/sonar-dev-maven-plugin/pom.xml
+++ b/subprojects/sonar-dev-maven-plugin/pom.xml
@@ -374,7 +374,12 @@
<dependency>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-ant</artifactId>
- <version>1.0.3</version>
+ <!-- Godin:
+ Seems that version 1.0 has corrupted metadata in central maven repo,
+ so in this case project can't be built with Maven 2.2
+ And versions 1.0.1 - 1.0.3 doesn't work for us.
+ -->
+ <version>1.0-beta-2</version>
<exclusions>
<exclusion>
<groupId>ant</groupId>
@@ -436,4 +441,25 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-plugin-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.1</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
</project>