aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-maven-plugin/pom.xml
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2014-10-23 18:28:13 +0200
committerJulien HENRY <julien.henry@sonarsource.com>2014-10-23 21:18:27 +0200
commit4c3993eb0204b526be90108a1185e691596ef06c (patch)
tree62ad76970d10ddcafd144b03e2514a69f80f4b0e /sonar-maven-plugin/pom.xml
parentff739ecc971cf8a9d610477cd414569540fe88b8 (diff)
downloadsonarqube-4c3993eb0204b526be90108a1185e691596ef06c.tar.gz
sonarqube-4c3993eb0204b526be90108a1185e691596ef06c.zip
SONAR-5705 Drop support of Maven 2
Diffstat (limited to 'sonar-maven-plugin/pom.xml')
-rw-r--r--sonar-maven-plugin/pom.xml76
1 files changed, 0 insertions, 76 deletions
diff --git a/sonar-maven-plugin/pom.xml b/sonar-maven-plugin/pom.xml
deleted file mode 100644
index 06e8f96152d..00000000000
--- a/sonar-maven-plugin/pom.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?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.shared</groupId>
- <artifactId>maven-dependency-tree</artifactId>
- </dependency>
- <dependency>
- <groupId>org.codehaus.sonar.runner</groupId>
- <artifactId>sonar-runner-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-plugin-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-core</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-project</artifactId>
- <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>