Browse Source

upgrade the surefire maven plugin

tags/2.6
simonbrandhof 13 years ago
parent
commit
86a7530425
1 changed files with 6 additions and 17 deletions
  1. 6
    17
      pom.xml

+ 6
- 17
pom.xml View File

<?xml version="1.0" encoding="UTF-8"?> <?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/maven-v4_0_0.xsd">
<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/maven-v4_0_0.xsd">


<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.sonar</groupId> <groupId>org.codehaus.sonar</groupId>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<version>2.6</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.sonar</groupId> <groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId> <artifactId>sonar-packaging-maven-plugin</artifactId>
<version>0.1</version> <version>0.1</version>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>


<banLatest>true</banLatest> <banLatest>true</banLatest>
<banRelease>true</banRelease> <banRelease>true</banRelease>
<phases>clean,deploy</phases> <phases>clean,deploy</phases>
</requirePluginVersions>
</requirePluginVersions>
</rules> </rules>
</configuration> </configuration>
</execution> </execution>
</execution> </execution>
</executions> </executions>
</plugin> </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> </plugins>
</build> </build>


<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId> <artifactId>maven-artifact</artifactId>
<version>2.0.7</version> <version>2.0.7</version>
</dependency>
</dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>

Loading…
Cancel
Save