aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-batch-maven-plugin/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sonar-batch-maven-plugin/pom.xml')
-rw-r--r--plugins/sonar-batch-maven-plugin/pom.xml51
1 files changed, 0 insertions, 51 deletions
diff --git a/plugins/sonar-batch-maven-plugin/pom.xml b/plugins/sonar-batch-maven-plugin/pom.xml
deleted file mode 100644
index 52fd352bfb2..00000000000
--- a/plugins/sonar-batch-maven-plugin/pom.xml
+++ /dev/null
@@ -1,51 +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.sonarsource.sonarqube</groupId>
- <artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
- <relativePath>../..</relativePath>
- </parent>
-
- <artifactId>sonar-batch-maven-plugin</artifactId>
- <name>SonarQube :: Batch Maven Plugin</name>
- <packaging>sonar-plugin</packaging>
- <description>Inject MavenProject in each module.</description>
-
- <dependencies>
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>sonar-plugin-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-core</artifactId>
- <version>3.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
- <artifactId>sonar-packaging-maven-plugin</artifactId>
- <configuration>
- <pluginKey>mavenbatch</pluginKey>
- <pluginName>Maven Batch</pluginName>
- <pluginClass>org.sonar.plugins.batch.maven.MavenBatchPlugin</pluginClass>
- <pluginDescription>
- <![CDATA[Inject MavenProject in each module.]]></pluginDescription>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>