]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4047 Try to fix build with Maven 2.2.1
authorJulien HENRY <julien.henry@sonarsource.com>
Wed, 19 Jun 2013 12:32:12 +0000 (14:32 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Wed, 19 Jun 2013 12:32:43 +0000 (14:32 +0200)
plugins/sonar-maven-batch-plugin/pom.xml

index 8fc9fe17e961f634a532fe8408c97b8a344b7168..8cdaa95f80e7c2ce1ba3f0a46666ca8b1a6457bf 100644 (file)
@@ -13,7 +13,7 @@
   <name>Sonar :: Maven Batch Plugin</name>
   
   <properties>
-    <maven.api.version>3.0</maven.api.version>
+    <maven.version>3.0</maven.version>
   </properties>
 
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
+      <version>${maven.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-core</artifactId>
+      <version>${maven.version}</version>
       <scope>provided</scope>
     </dependency>
-    <!-- <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-project</artifactId>
-      <scope>provided</scope>
-    </dependency> -->
   </dependencies>
   
   <build>