You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nemo.apache.org by jo...@apache.org on 2018/11/26 07:03:06 UTC

[incubator-nemo] branch master updated: [NEMO-303] Use Surefire 3.0.0-M1 (#162)

This is an automated email from the ASF dual-hosted git repository.

johnyangk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nemo.git


The following commit(s) were added to refs/heads/master by this push:
     new 8af55d8  [NEMO-303] Use Surefire 3.0.0-M1 (#162)
8af55d8 is described below

commit 8af55d81ad08f2e1c80a0f6efa49e69abb80e104
Author: Jangho Seo <ja...@jangho.io>
AuthorDate: Mon Nov 26 16:03:02 2018 +0900

    [NEMO-303] Use Surefire 3.0.0-M1 (#162)
    
    JIRA: [NEMO-303: Use Surefire 3.0.0-M1](https://issues.apache.org/jira/projects/NEMO/issues/NEMO-303)
    
    **Minor changes to note:**
    - POM: Use maven-surefire-plugin 3.0.0-M1 and maven-failsafe-plugin 3.0.0-M1
    
    **Notes**
    - See SUREFIRE-1588 for the relevant bug report at the ASF Jira system
---
 pom.xml | 32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

diff --git a/pom.xml b/pom.xml
index 20cfc45..7ed51fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,6 +64,7 @@ under the License.
         <!-- Tests -->
         <mockito.version>2.13.0</mockito.version>
         <powermock.version>2.0.0-beta.5</powermock.version>
+        <surefire.version>3.0.0-M1</surefire.version>
         <junit.version>4.12</junit.version>
     </properties>
 
@@ -156,25 +157,30 @@ under the License.
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>sonar-maven-plugin</artifactId>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>${surefire.version}</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-failsafe-plugin</artifactId>
+                    <version>${surefire.version}</version>
+                    <executions>
+                        <execution>
+                            <goals>
+                                <goal>integration-test</goal>
+                                <goal>verify</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
             </plugins>
         </pluginManagement>
 
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-failsafe-plugin</artifactId>
-                <version>2.20.1</version>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>integration-test</goal>
-                            <goal>verify</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <version>2.17</version>
                 <executions>