Repository: tomee
Updated Branches:
  refs/heads/master ded08b8b6 -> a48208ac3


Fixed wireshark plugin so stop the server after tests.


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/a48208ac
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/a48208ac
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/a48208ac

Branch: refs/heads/master
Commit: a48208ac337cbeddbc2c27c27fe9fc68fdfafe3f
Parents: 649365f
Author: Roberto Cortez <radcor...@yahoo.com>
Authored: Sun Oct 14 00:20:29 2018 +0100
Committer: Roberto Cortez <radcor...@yahoo.com>
Committed: Sun Oct 14 00:20:57 2018 +0100

----------------------------------------------------------------------
 tck/microprofile-tck/rest-client/pom.xml | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/a48208ac/tck/microprofile-tck/rest-client/pom.xml
----------------------------------------------------------------------
diff --git a/tck/microprofile-tck/rest-client/pom.xml 
b/tck/microprofile-tck/rest-client/pom.xml
index 91bfb8f..53e53e8 100644
--- a/tck/microprofile-tck/rest-client/pom.xml
+++ b/tck/microprofile-tck/rest-client/pom.xml
@@ -33,19 +33,27 @@
     <plugins>
 
       <plugin>
-        <groupId>uk.co.deliverymind</groupId>
+        <groupId>uk.co.automatictester</groupId>
         <artifactId>wiremock-maven-plugin</artifactId>
-        <version>2.7.0</version>
+        <version>3.0.0</version>
+        <configuration>
+          <dir>target/classes</dir>
+          <params>&#45;&#45;port=8765 &#45;&#45;verbose</params>
+        </configuration>
         <executions>
           <execution>
+            <id>start-wiremock</id>
             <phase>generate-test-sources</phase>
             <goals>
               <goal>run</goal>
             </goals>
-            <configuration>
-              <dir>target/classes</dir>
-              <params>&#45;&#45;port=8765 &#45;&#45;verbose</params>
-            </configuration>
+          </execution>
+          <execution>
+            <id>stop-wiremock</id>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>stop</goal>
+            </goals>
           </execution>
         </executions>
       </plugin>

Reply via email to