Repository: incubator-tamaya-extensions Updated Branches: refs/heads/master 27a78e287 -> 6bb367ee8
[TAMAYA-258] Integrated PIT into the extension project. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/6bb367ee Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/6bb367ee Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/6bb367ee Branch: refs/heads/master Commit: 6bb367ee8591aff2db01e9490808ff54dbe23ba4 Parents: 27a78e2 Author: Oliver B. Fischer <[email protected]> Authored: Sat Mar 18 21:01:07 2017 +0100 Committer: Oliver B. Fischer <[email protected]> Committed: Sat Mar 18 21:01:07 2017 +0100 ---------------------------------------------------------------------- pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/6bb367ee/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 371a3e9..8066dfa 100644 --- a/pom.xml +++ b/pom.xml @@ -83,6 +83,7 @@ under the License. <jruby.version>1.7.20</jruby.version> <findbugs.version>3.0.4</findbugs.version> <mockito.version>1.10.19</mockito.version> + <pitest-plugin.version>1.1.11</pitest-plugin.version> <rat.version>0.12</rat.version> <toolchains.plugin>1.1</toolchains.plugin> @@ -344,6 +345,10 @@ under the License. <artifactId>geronimo-annotation_1.2_spec</artifactId> <version>1.0-alpha-1</version> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> </dependencies> @@ -513,6 +518,18 @@ under the License. </configuration> </plugin> <plugin> + <groupId>org.pitest</groupId> + <artifactId>pitest-maven</artifactId> + <version>${pitest-plugin.version}</version> + <configuration> + <coverageThreshold>80</coverageThreshold> + <targetClasses> + <param>org.apache.tamaya.*</param> + </targetClasses> + </configuration> + </plugin> + + <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <version>3.3.0</version>
