java-tutorials/testing/pom.xml

124 lines
4.6 KiB
XML
Raw Normal View History

2016-10-25 11:16:10 -04:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-04-26 14:31:31 -04:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2016-10-25 11:16:10 -04:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
2017-04-26 14:31:31 -04:00
<artifactId>testing</artifactId>
2016-10-25 11:16:10 -04:00
<version>0.1-SNAPSHOT</version>
2017-04-26 14:31:31 -04:00
<name>testing</name>
2016-10-25 11:16:10 -04:00
<dependencies>
2017-04-26 14:31:31 -04:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-guava</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
2016-10-25 11:16:10 -04:00
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-parent</artifactId>
2016-12-02 06:28:53 -05:00
<version>${pitest.version}</version>
2016-10-25 11:16:10 -04:00
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2016-12-02 06:28:53 -05:00
<version>${junit.version}</version>
2016-10-25 11:16:10 -04:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
2016-12-02 06:28:53 -05:00
<version>${pitest.version}</version>
2016-10-25 11:16:10 -04:00
<configuration>
<targetClasses>
<param>com.baeldung.testing.mutation.*</param>
</targetClasses>
<targetTests>
<param>com.baeldung.mutation.test.*</param>
</targetTests>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
2016-12-02 06:28:53 -05:00
<version>${jacoco.version}</version>
2016-10-25 11:16:10 -04:00
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>jacoco-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>PACKAGE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.50</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
2017-04-26 14:31:31 -04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2016-10-25 11:16:10 -04:00
</plugins>
</build>
2017-04-26 14:31:31 -04:00
<properties>
<pitest.version>1.1.10</pitest.version>
<junit.version>4.12</junit.version>
<jacoco.version>0.7.7.201606060606</jacoco.version>
<guava.version>19.0</guava.version>
<assertj-guava.version>3.1.0</assertj-guava.version>
<junit.version>4.12</junit.version>
<assertj-core.version>3.6.1</assertj-core.version>
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
</properties>
2016-10-25 11:16:10 -04:00
</project>