[TAMAYA-258] Do not run PIT for the buildconfigurations module.
Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/e5d02cbb Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/e5d02cbb Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/e5d02cbb Branch: refs/heads/master Commit: e5d02cbb8b9df6933695f3e2e8b54f08dde981a4 Parents: cf45cfa Author: Oliver B. Fischer <[email protected]> Authored: Sat Mar 18 21:22:37 2017 +0100 Committer: Oliver B. Fischer <[email protected]> Committed: Sat Mar 18 21:22:37 2017 +0100 ---------------------------------------------------------------------- buildconfigurations/pom.xml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/e5d02cbb/buildconfigurations/pom.xml ---------------------------------------------------------------------- diff --git a/buildconfigurations/pom.xml b/buildconfigurations/pom.xml index c53d8df..cdb9a0c 100644 --- a/buildconfigurations/pom.xml +++ b/buildconfigurations/pom.xml @@ -48,4 +48,21 @@ under the License. <tag>vote02-tamaya-0.2-incubating</tag> </scm> -</project> \ No newline at end of file + <build> + <plugins> + <plugin> + <groupId>org.pitest</groupId> + <artifactId>pitest-maven</artifactId> + <configuration> + <!-- + ! Do not run PIT as we don't have neither code nor tests + ! in this module. + ! Oliver B. Fischer, 2017-03-18 + !--> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + +</project>
