diff options
Diffstat (limited to 'plugins/sonar-batch-maven-plugin/pom.xml')
-rw-r--r-- | plugins/sonar-batch-maven-plugin/pom.xml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/plugins/sonar-batch-maven-plugin/pom.xml b/plugins/sonar-batch-maven-plugin/pom.xml new file mode 100644 index 00000000000..1905981221a --- /dev/null +++ b/plugins/sonar-batch-maven-plugin/pom.xml @@ -0,0 +1,53 @@ +<?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.2-SNAPSHOT</version> + <relativePath>../..</relativePath> + </parent> + + <groupId>org.codehaus.sonar.plugins</groupId> + <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>org.codehaus.sonar</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.codehaus.sonar</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> |