aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-maven-plugin/pom.xml
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2015-01-06 11:40:39 +0100
committerJulien HENRY <julien.henry@sonarsource.com>2015-01-06 11:59:49 +0100
commit34cff10aba416343d259a21d1f9ca92e1188bf0e (patch)
tree3afe70f7b0d04c55e9f56b5c6da9802004818c0b /sonar-maven-plugin/pom.xml
parent099f5133ceec1648c5dc96420c8cd0676e48df68 (diff)
downloadsonarqube-34cff10aba416343d259a21d1f9ca92e1188bf0e.tar.gz
sonarqube-34cff10aba416343d259a21d1f9ca92e1188bf0e.zip
SONAR-5705 Restore internal mojo to have clean failure
Diffstat (limited to 'sonar-maven-plugin/pom.xml')
-rw-r--r--sonar-maven-plugin/pom.xml67
1 files changed, 67 insertions, 0 deletions
diff --git a/sonar-maven-plugin/pom.xml b/sonar-maven-plugin/pom.xml
new file mode 100644
index 00000000000..8d3efef3c50
--- /dev/null
+++ b/sonar-maven-plugin/pom.xml
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.codehaus.sonar</groupId>
+ <artifactId>sonar</artifactId>
+ <version>5.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>sonar-maven-plugin</artifactId>
+ <packaging>maven-plugin</packaging>
+ <name>SonarQube :: Maven2 Plugin</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-artifact</artifactId>
+ <version>2.2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-core</artifactId>
+ <version>2.2.0</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Test -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-all</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.easytesting</groupId>
+ <artifactId>fest-assert</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skipTests>${skipBatchTests}</skipTests>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>