You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2017/10/14 20:39:17 UTC

[1/2] incubator-tamaya-extensions git commit: [TAMAYA-291] Coverage is now at 29%.

Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master bb73cdbfb -> 7483ab3d0


[TAMAYA-291] Coverage is now at 29%.


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/7483ab3d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/7483ab3d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/7483ab3d

Branch: refs/heads/master
Commit: 7483ab3d006c8ab210c1b61b1b04b0665648e770
Parents: 6050bd6
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sat Oct 14 22:38:37 2017 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sat Oct 14 22:38:58 2017 +0200

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/7483ab3d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 90fecab..40372fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -521,7 +521,7 @@ under the License.
                     <artifactId>pitest-maven</artifactId>
                     <version>${pitest-plugin.version}</version>
                     <configuration>
-                        <mutationThreshold>28</mutationThreshold>
+                        <mutationThreshold>29</mutationThreshold>
                         <timestampedReports>false</timestampedReports>
                         <targetClasses>
                             <param>org.apache.tamaya.*</param>


[2/2] incubator-tamaya-extensions git commit: [TAMAYA-291][TAMAYA-318] Disabled PIT for the SPI support module.

Posted by pl...@apache.org.
[TAMAYA-291][TAMAYA-318] Disabled PIT for the SPI support module.


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/6050bd69
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/6050bd69
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/6050bd69

Branch: refs/heads/master
Commit: 6050bd696bdd13620998fdecd4499629ca3d922f
Parents: bb73cdb
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sat Oct 14 22:37:43 2017 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sat Oct 14 22:38:58 2017 +0200

----------------------------------------------------------------------
 modules/spi-support/pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/6050bd69/modules/spi-support/pom.xml
----------------------------------------------------------------------
diff --git a/modules/spi-support/pom.xml b/modules/spi-support/pom.xml
index 003c3ce..d61c7f6 100644
--- a/modules/spi-support/pom.xml
+++ b/modules/spi-support/pom.xml
@@ -62,4 +62,19 @@ under the License.
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <!--
+                 ! See https://issues.apache.org/jira/browse/TAMAYA-318
+                 !-->
+                <groupId>org.pitest</groupId>
+                <artifactId>pitest-maven</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>