summaryrefslogtreecommitdiffstats
path: root/plugins/sonar-surefire-plugin/pom.xml
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2012-11-06 16:54:08 +0100
committerEvgeny Mandrikov <mandrikov@gmail.com>2012-11-06 17:08:07 +0100
commit888c891faab4146cd47cf2c9da2dc01686f082e8 (patch)
tree35668d88ae4a2425578badcb810a9edbd17935d7 /plugins/sonar-surefire-plugin/pom.xml
parentc468d88dc0fa3569c5e36d06bee0b29b43cf4963 (diff)
downloadsonarqube-888c891faab4146cd47cf2c9da2dc01686f082e8.tar.gz
sonarqube-888c891faab4146cd47cf2c9da2dc01686f082e8.zip
SONAR-3934 Extract sonar-surefire-plugin into Sonar Java
Diffstat (limited to 'plugins/sonar-surefire-plugin/pom.xml')
-rw-r--r--plugins/sonar-surefire-plugin/pom.xml70
1 files changed, 0 insertions, 70 deletions
diff --git a/plugins/sonar-surefire-plugin/pom.xml b/plugins/sonar-surefire-plugin/pom.xml
deleted file mode 100644
index 2fdd294d08f..00000000000
--- a/plugins/sonar-surefire-plugin/pom.xml
+++ /dev/null
@@ -1,70 +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>3.4-SNAPSHOT</version>
- <relativePath>../..</relativePath>
- </parent>
-
- <groupId>org.codehaus.sonar.plugins</groupId>
- <artifactId>sonar-surefire-plugin</artifactId>
- <packaging>sonar-plugin</packaging>
-
- <name>Sonar :: Plugins :: Surefire</name>
-
- <dependencies>
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-plugin-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-project</artifactId>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-testing-harness</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <testResources>
- <testResource>
- <directory>${basedir}/src/main/resources</directory>
- </testResource>
- <testResource>
- <directory>${basedir}/src/test/resources</directory>
- </testResource>
- </testResources>
- <plugins>
- <plugin>
- <groupId>org.codehaus.sonar</groupId>
- <artifactId>sonar-packaging-maven-plugin</artifactId>
- <configuration>
- <pluginKey>surefire</pluginKey>
- <pluginName>Surefire</pluginName>
- <pluginClass>org.sonar.plugins.surefire.SurefirePlugin</pluginClass>
- <pluginDescription>
- <![CDATA[Get results of unit tests with <a href='http://maven.apache.org/plugins/maven-surefire-plugin/'>Surefire</a>.]]></pluginDescription>
- </configuration>
- </plugin>
- <!-- Running JUnit tests in parallel -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <parallel>classes</parallel>
- <threadCount>3</threadCount>
- <perCoreThreadCount>true</perCoreThreadCount>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>