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

jungm pushed a commit to branch ee11
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit 751e001ded4433bcd2edab77448fdd3e36293907
Author: Markus Jung <[email protected]>
AuthorDate: Sat Jul 18 20:24:32 2026 +0200

    Manage shared plugin and sigtest versions in the root pom
---
 pom.xml                                       | 54 +++++++++++++++++++++++++++
 runner-smoke/pom.xml                          |  1 -
 runner-standalone/annotations-install/pom.xml |  4 --
 runner-standalone/annotations/pom.xml         |  2 -
 runner-standalone/authentication/pom.xml      |  2 -
 runner-standalone/concurrency/pom.xml         |  2 -
 runner-standalone/data/pom.xml                |  2 -
 runner-standalone/debugging-install/pom.xml   |  5 ---
 runner-standalone/di-install/pom.xml          |  4 --
 runner-standalone/el-install/pom.xml          |  4 --
 runner-standalone/el/pom.xml                  |  2 -
 runner-standalone/faces-old/pom.xml           |  1 -
 runner-standalone/faces/pom.xml               |  2 -
 runner-standalone/jsonb/pom.xml               |  2 -
 runner-standalone/jsonp/pom.xml               |  2 -
 runner-standalone/pages-install/pom.xml       |  2 -
 runner-standalone/pages/pom.xml               |  2 -
 runner-standalone/persistence-install/pom.xml |  2 -
 runner-standalone/persistence/pom.xml         |  3 --
 runner-standalone/pom.xml                     |  3 --
 runner-standalone/rest-install/pom.xml        |  4 --
 runner-standalone/rest/pom.xml                |  2 -
 runner-standalone/security/pom.xml            |  2 -
 runner-standalone/servlet-install/pom.xml     |  6 ---
 runner-standalone/servlet/pom.xml             |  2 -
 runner-standalone/transactions/pom.xml        |  1 -
 runner-standalone/validation-install/pom.xml  |  5 ---
 runner-standalone/websocket-install/pom.xml   |  2 -
 runner-standalone/websocket/pom.xml           |  2 -
 runner-webprofile/run/pom.xml                 |  4 --
 30 files changed, 54 insertions(+), 77 deletions(-)

diff --git a/pom.xml b/pom.xml
index 512c149..e31c0e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,10 +47,18 @@
     <jakarta.tags.api.version>3.0.2</jakarta.tags.api.version>
     <derby.version>10.15.2.0</derby.version>
 
+    <maven.antrun.plugin.version>3.1.0</maven.antrun.plugin.version>
     <maven.compiler.plugin.version>3.14.0</maven.compiler.plugin.version>
+    <maven.dependency.plugin.version>3.8.1</maven.dependency.plugin.version>
     <maven.enforcer.plugin.version>3.6.1</maven.enforcer.plugin.version>
     <maven.failsafe.plugin.version>3.5.3</maven.failsafe.plugin.version>
+    <maven.install.plugin.version>3.1.4</maven.install.plugin.version>
+    <maven.invoker.plugin.version>3.10.1</maven.invoker.plugin.version>
+    <maven.resources.plugin.version>3.3.1</maven.resources.plugin.version>
     <maven.surefire.plugin.version>3.5.3</maven.surefire.plugin.version>
+    <exec.maven.plugin.version>3.5.0</exec.maven.plugin.version>
+    <download.maven.plugin.version>1.13.0</download.maven.plugin.version>
+    <sigtest.maven.plugin.version>2.6</sigtest.maven.plugin.version>
   </properties>
 
   <dependencyManagement>
@@ -96,6 +104,12 @@
         <artifactId>arquillian-tomee-remote</artifactId>
         <version>${tomee.version}</version>
       </dependency>
+      <dependency>
+        <!-- Consumed as a test-scoped jar by the signature-test runners. -->
+        <groupId>jakarta.tck</groupId>
+        <artifactId>sigtest-maven-plugin</artifactId>
+        <version>${sigtest.maven.plugin.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.tomcat</groupId>
         <artifactId>tomcat-websocket</artifactId>
@@ -106,6 +120,11 @@
         <artifactId>tomcat-api</artifactId>
         <version>${tomcat.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.tomcat</groupId>
+        <artifactId>tomcat-catalina</artifactId>
+        <version>${tomcat.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.tomcat</groupId>
         <artifactId>tomcat-jasper-el</artifactId>
@@ -167,6 +186,41 @@
   <build>
     <pluginManagement>
       <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>${maven.antrun.plugin.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <version>${maven.dependency.plugin.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-install-plugin</artifactId>
+          <version>${maven.install.plugin.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-invoker-plugin</artifactId>
+          <version>${maven.invoker.plugin.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>${maven.resources.plugin.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>${exec.maven.plugin.version}</version>
+        </plugin>
+        <plugin>
+          <groupId>com.googlecode.maven-download-plugin</groupId>
+          <artifactId>download-maven-plugin</artifactId>
+          <version>${download.maven.plugin.version}</version>
+        </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
diff --git a/runner-smoke/pom.xml b/runner-smoke/pom.xml
index 8c67d79..296db26 100644
--- a/runner-smoke/pom.xml
+++ b/runner-smoke/pom.xml
@@ -68,7 +68,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-dependency-plugin</artifactId>
-                <version>3.8.1</version>
                 <executions>
                     <execution>
                         <id>resolve-tomee-distribution</id>
diff --git a/runner-standalone/annotations-install/pom.xml 
b/runner-standalone/annotations-install/pom.xml
index c598e3b..7e07e20 100644
--- a/runner-standalone/annotations-install/pom.xml
+++ b/runner-standalone/annotations-install/pom.xml
@@ -49,14 +49,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-annotations-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${annotations.tck.url}</url>
                   <sha256>${annotations.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -68,14 +66,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-annotations-tck</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/annotations-tck/artifacts/jakarta-annotations-tck-${annotations.tck.version}.jar</file>
                   <groupId>jakartatck</groupId>
                   <artifactId>jakarta-annotations-tck</artifactId>
diff --git a/runner-standalone/annotations/pom.xml 
b/runner-standalone/annotations/pom.xml
index ab2a014..c4602db 100644
--- a/runner-standalone/annotations/pom.xml
+++ b/runner-standalone/annotations/pom.xml
@@ -34,7 +34,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -69,7 +68,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-tomee-api-jar</id>
diff --git a/runner-standalone/authentication/pom.xml 
b/runner-standalone/authentication/pom.xml
index 3e7bfb1..fb87111 100644
--- a/runner-standalone/authentication/pom.xml
+++ b/runner-standalone/authentication/pom.xml
@@ -49,7 +49,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>download-tck</id>
@@ -151,7 +150,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-invoker-plugin</artifactId>
-        <version>3.10.1</version>
         <configuration>
           <skipInvocation>${tck.standalone.skip}</skipInvocation>
           <projectsDirectory>${authentication.tck.dir}</projectsDirectory>
diff --git a/runner-standalone/concurrency/pom.xml 
b/runner-standalone/concurrency/pom.xml
index 7e97641..f11098e 100644
--- a/runner-standalone/concurrency/pom.xml
+++ b/runner-standalone/concurrency/pom.xml
@@ -52,7 +52,6 @@
     <dependency>
       <groupId>org.apache.tomcat</groupId>
       <artifactId>tomcat-catalina</artifactId>
-      <version>${tomcat.version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -65,7 +64,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/runner-standalone/data/pom.xml b/runner-standalone/data/pom.xml
index 5947680..5fc5d34 100644
--- a/runner-standalone/data/pom.xml
+++ b/runner-standalone/data/pom.xml
@@ -68,7 +68,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -156,7 +155,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-tomee-api-jar</id>
diff --git a/runner-standalone/debugging-install/pom.xml 
b/runner-standalone/debugging-install/pom.xml
index b3117ef..61b14ea 100644
--- a/runner-standalone/debugging-install/pom.xml
+++ b/runner-standalone/debugging-install/pom.xml
@@ -50,14 +50,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-debugging-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${debugging.tck.url}</url>
                   <sha256>${debugging.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -70,14 +68,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-debugging-tck</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/debugging-tck/debugging-tck-${debugging.tck.version}.jar</file>
                   <groupId>jakartatck</groupId>
                   <artifactId>jakarta-debugging-tck</artifactId>
@@ -90,7 +86,6 @@
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/debugging-tck/testclient.war</file>
                   <groupId>jakartatck</groupId>
                   <artifactId>jakarta-debugging-tck</artifactId>
diff --git a/runner-standalone/di-install/pom.xml 
b/runner-standalone/di-install/pom.xml
index d5c38f7..de23540 100644
--- a/runner-standalone/di-install/pom.xml
+++ b/runner-standalone/di-install/pom.xml
@@ -49,14 +49,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-di-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${di.tck.url}</url>
                   <sha256>${di.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -68,14 +66,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-di-tck</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/jakarta.inject-tck-${di.tck.version}/jakarta.inject-tck-${di.tck.version}.jar</file>
                   <groupId>jakarta.inject</groupId>
                   <artifactId>jakarta.inject-tck</artifactId>
diff --git a/runner-standalone/el-install/pom.xml 
b/runner-standalone/el-install/pom.xml
index 4e9b848..1a1bca7 100644
--- a/runner-standalone/el-install/pom.xml
+++ b/runner-standalone/el-install/pom.xml
@@ -50,14 +50,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-el-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${el.tck.url}</url>
                   <sha256>${el.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -69,14 +67,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-el-tck</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/el-tck/artifacts/jakarta-expression-language-tck-${el.tck.version}.jar</file>
                   <groupId>jakarta.tck</groupId>
                   <artifactId>jakarta-expression-language-tck</artifactId>
diff --git a/runner-standalone/el/pom.xml b/runner-standalone/el/pom.xml
index fb17be9..aac43f7 100644
--- a/runner-standalone/el/pom.xml
+++ b/runner-standalone/el/pom.xml
@@ -58,7 +58,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -93,7 +92,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-tomee-el-api-jar</id>
diff --git a/runner-standalone/faces-old/pom.xml 
b/runner-standalone/faces-old/pom.xml
index 72ebda0..a6bc6cd 100644
--- a/runner-standalone/faces-old/pom.xml
+++ b/runner-standalone/faces-old/pom.xml
@@ -94,7 +94,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
 
           <!-- Step 1: download and verify the TCK distribution and the Ant
diff --git a/runner-standalone/faces/pom.xml b/runner-standalone/faces/pom.xml
index 93c4ecf..694d975 100644
--- a/runner-standalone/faces/pom.xml
+++ b/runner-standalone/faces/pom.xml
@@ -47,7 +47,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>download-tck</id>
@@ -133,7 +132,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-invoker-plugin</artifactId>
-        <version>3.10.1</version>
         <configuration>
           <skipInvocation>${tck.standalone.skip}</skipInvocation>
           <projectsDirectory>${faces.tck.dir}</projectsDirectory>
diff --git a/runner-standalone/jsonb/pom.xml b/runner-standalone/jsonb/pom.xml
index e5d1cea..16fe834 100644
--- a/runner-standalone/jsonb/pom.xml
+++ b/runner-standalone/jsonb/pom.xml
@@ -92,7 +92,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -127,7 +126,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-tomee-api-jar</id>
diff --git a/runner-standalone/jsonp/pom.xml b/runner-standalone/jsonp/pom.xml
index bfa26ef..234e618 100644
--- a/runner-standalone/jsonp/pom.xml
+++ b/runner-standalone/jsonp/pom.xml
@@ -56,7 +56,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -91,7 +90,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-tomee-api-jar</id>
diff --git a/runner-standalone/pages-install/pom.xml 
b/runner-standalone/pages-install/pom.xml
index 1aa8b42..d42536a 100644
--- a/runner-standalone/pages-install/pom.xml
+++ b/runner-standalone/pages-install/pom.xml
@@ -51,7 +51,6 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-pages-tck</id>
@@ -69,7 +68,6 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-pages-tck</id>
diff --git a/runner-standalone/pages/pom.xml b/runner-standalone/pages/pom.xml
index 6e29786..601ccf7 100644
--- a/runner-standalone/pages/pom.xml
+++ b/runner-standalone/pages/pom.xml
@@ -75,7 +75,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -136,7 +135,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-pages-api-jars</id>
diff --git a/runner-standalone/persistence-install/pom.xml 
b/runner-standalone/persistence-install/pom.xml
index 666c6a5..186a942 100644
--- a/runner-standalone/persistence-install/pom.xml
+++ b/runner-standalone/persistence-install/pom.xml
@@ -51,7 +51,6 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-persistence-tck</id>
@@ -69,7 +68,6 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-persistence-tck-parent-pom</id>
diff --git a/runner-standalone/persistence/pom.xml 
b/runner-standalone/persistence/pom.xml
index bcbd09c..238a701 100644
--- a/runner-standalone/persistence/pom.xml
+++ b/runner-standalone/persistence/pom.xml
@@ -52,7 +52,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
     <!-- Platform TCK support libraries used by the TCK client classes and
@@ -126,7 +125,6 @@
       <plugin>
         <groupId>com.googlecode.maven-download-plugin</groupId>
         <artifactId>download-maven-plugin</artifactId>
-        <version>1.13.0</version>
         <executions>
           <execution>
             <id>download-persistence-tck-sql</id>
@@ -145,7 +143,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-tomee-persistence-jars</id>
diff --git a/runner-standalone/pom.xml b/runner-standalone/pom.xml
index 4db8e93..ddf6c5b 100644
--- a/runner-standalone/pom.xml
+++ b/runner-standalone/pom.xml
@@ -139,7 +139,6 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-resources-plugin</artifactId>
-          <version>3.3.1</version>
           <executions>
             <execution>
               <id>stage-tomee-configuration</id>
@@ -168,7 +167,6 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-dependency-plugin</artifactId>
-          <version>3.8.1</version>
           <executions>
             <execution>
               <id>resolve-tomee-distribution</id>
@@ -198,7 +196,6 @@
         <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>exec-maven-plugin</artifactId>
-          <version>3.5.0</version>
           <executions>
             <execution>
               <id>reset-generated-test-environment</id>
diff --git a/runner-standalone/rest-install/pom.xml 
b/runner-standalone/rest-install/pom.xml
index d6ce4b2..88727ee 100644
--- a/runner-standalone/rest-install/pom.xml
+++ b/runner-standalone/rest-install/pom.xml
@@ -53,14 +53,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-rest-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${rest.tck.url}</url>
                   <sha256>${rest.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -72,14 +70,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-rest-tck</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <!-- The distribution ships no standalone pom for the 
artifact
                        (only the one embedded in the jar, whose parent is the
                        jakarta.ws.rs:all reactor); generate a plain pom and let
diff --git a/runner-standalone/rest/pom.xml b/runner-standalone/rest/pom.xml
index 7c8a333..c3afde9 100644
--- a/runner-standalone/rest/pom.xml
+++ b/runner-standalone/rest/pom.xml
@@ -117,7 +117,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -164,7 +163,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-rest-api-jars</id>
diff --git a/runner-standalone/security/pom.xml 
b/runner-standalone/security/pom.xml
index 159120c..d6ed696 100644
--- a/runner-standalone/security/pom.xml
+++ b/runner-standalone/security/pom.xml
@@ -55,7 +55,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>download-tck</id>
@@ -160,7 +159,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-invoker-plugin</artifactId>
-        <version>3.10.1</version>
         <configuration>
           <skipInvocation>${tck.standalone.skip}</skipInvocation>
           <projectsDirectory>${tck.dir}</projectsDirectory>
diff --git a/runner-standalone/servlet-install/pom.xml 
b/runner-standalone/servlet-install/pom.xml
index 5c17d51..6bb6a1c 100644
--- a/runner-standalone/servlet-install/pom.xml
+++ b/runner-standalone/servlet-install/pom.xml
@@ -49,14 +49,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-servlet-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${servlet.tck.url}</url>
                   <sha256>${servlet.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -68,14 +66,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-servlet-tck-pom</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/servlet-tck/artifacts/servlet-tck-${servlet.tck.version}.pom</file>
                   <groupId>jakarta.tck</groupId>
                   <artifactId>servlet-tck</artifactId>
@@ -88,7 +84,6 @@
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/servlet-tck/artifacts/servlet-tck-runtime-${servlet.tck.version}.jar</file>
                   <groupId>jakarta.tck</groupId>
                   <artifactId>servlet-tck-runtime</artifactId>
@@ -101,7 +96,6 @@
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/servlet-tck/artifacts/servlet-tck-util-${servlet.tck.version}.jar</file>
                   <groupId>jakarta.tck</groupId>
                   <artifactId>servlet-tck-util</artifactId>
diff --git a/runner-standalone/servlet/pom.xml 
b/runner-standalone/servlet/pom.xml
index 5d99070..5fdaa0e 100644
--- a/runner-standalone/servlet/pom.xml
+++ b/runner-standalone/servlet/pom.xml
@@ -59,7 +59,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -133,7 +132,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-servlet-api-jar</id>
diff --git a/runner-standalone/transactions/pom.xml 
b/runner-standalone/transactions/pom.xml
index 63d804e..a1f495b 100644
--- a/runner-standalone/transactions/pom.xml
+++ b/runner-standalone/transactions/pom.xml
@@ -90,7 +90,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
 
           <!-- Step 1: download and verify the TCK distribution and the Ant
diff --git a/runner-standalone/validation-install/pom.xml 
b/runner-standalone/validation-install/pom.xml
index 4b3486b..8c83f28 100644
--- a/runner-standalone/validation-install/pom.xml
+++ b/runner-standalone/validation-install/pom.xml
@@ -49,14 +49,12 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-validation-tck</id>
                 <phase>generate-resources</phase>
                 <goals><goal>wget</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   <url>${validation.tck.url}</url>
                   <sha256>${validation.tck.sha256}</sha256>
                   <unpack>true</unpack>
@@ -68,14 +66,12 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-validation-tck-tests</id>
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/validation-tck-dist-${validation.tck.version}/artifacts/validation-tck-tests-${validation.tck.version}.jar</file>
                   <groupId>jakarta.validation</groupId>
                   <artifactId>validation-tck-tests</artifactId>
@@ -88,7 +84,6 @@
                 <phase>process-resources</phase>
                 <goals><goal>install-file</goal></goals>
                 <configuration>
-                  <skip>${tck.standalone.skip}</skip>
                   
<file>${project.build.directory}/validation-tck-dist-${validation.tck.version}/artifacts/tck-tests.xml</file>
                   <groupId>jakarta.validation</groupId>
                   <artifactId>validation-tck-tests</artifactId>
diff --git a/runner-standalone/websocket-install/pom.xml 
b/runner-standalone/websocket-install/pom.xml
index cb09eba..8dd85ce 100644
--- a/runner-standalone/websocket-install/pom.xml
+++ b/runner-standalone/websocket-install/pom.xml
@@ -51,7 +51,6 @@
           <plugin>
             <groupId>com.googlecode.maven-download-plugin</groupId>
             <artifactId>download-maven-plugin</artifactId>
-            <version>1.13.0</version>
             <executions>
               <execution>
                 <id>download-websocket-tck</id>
@@ -69,7 +68,6 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
-            <version>3.1.4</version>
             <executions>
               <execution>
                 <id>install-websocket-tck-parent-pom</id>
diff --git a/runner-standalone/websocket/pom.xml 
b/runner-standalone/websocket/pom.xml
index 3a7617b..400700f 100644
--- a/runner-standalone/websocket/pom.xml
+++ b/runner-standalone/websocket/pom.xml
@@ -73,7 +73,6 @@
     <dependency>
       <groupId>jakarta.tck</groupId>
       <artifactId>sigtest-maven-plugin</artifactId>
-      <version>2.6</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -115,7 +114,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>3.1.0</version>
         <executions>
           <execution>
             <id>locate-websocket-api-jars</id>
diff --git a/runner-webprofile/run/pom.xml b/runner-webprofile/run/pom.xml
index 591e1b4..773ed78 100644
--- a/runner-webprofile/run/pom.xml
+++ b/runner-webprofile/run/pom.xml
@@ -119,7 +119,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-resources-plugin</artifactId>
-        <version>3.3.1</version>
         <executions>
           <execution>
             <id>stage-tomee-configuration</id>
@@ -140,7 +139,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
-        <version>3.8.1</version>
         <executions>
           <execution>
             <id>resolve-tomee-distribution</id>
@@ -190,7 +188,6 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>exec-maven-plugin</artifactId>
-        <version>3.5.0</version>
         <executions>
           <execution>
             <id>reset-generated-test-environment</id>
@@ -488,7 +485,6 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-antrun-plugin</artifactId>
-            <version>3.1.0</version>
             <executions>
               <execution>
                 <id>build-signature-classpath</id>


Reply via email to