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

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


The following commit(s) were added to refs/heads/main by this push:
     new c9eabd4c21 Remove now unnecessary JAX-RS TCK installation
c9eabd4c21 is described below

commit c9eabd4c2127f16b095c011ac55b95c463f154fb
Author: Markus Jung <[email protected]>
AuthorDate: Tue Mar 24 20:39:13 2026 +0100

    Remove now unnecessary JAX-RS TCK installation
---
 tck/jax-rs/install-tck-artifact.sh | 22 ----------------------
 tck/jax-rs/pom.xml                 | 34 ----------------------------------
 2 files changed, 56 deletions(-)

diff --git a/tck/jax-rs/install-tck-artifact.sh 
b/tck/jax-rs/install-tck-artifact.sh
deleted file mode 100755
index 3890271c20..0000000000
--- a/tck/jax-rs/install-tck-artifact.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-#  Licensed to the Apache Software Foundation (ASF) under one or more
-#  contributor license agreements.  See the NOTICE file distributed with
-#  this work for additional information regarding copyright ownership.
-#  The ASF licenses this file to You under the Apache License, Version 2.0
-#  (the "License"); you may not use this file except in compliance with
-#  the License.  You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-#  Unless required by applicable law or agreed to in writing, software
-#  distributed under the License is distributed on an "AS IS" BASIS,
-#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#  See the License for the specific language governing permissions and
-#  limitations under the License.
-
-VERSION="$1"
-
-# jar
-mvn org.apache.maven.plugins:maven-install-plugin:3.1.0:install-file \
--Dfile=target/jakarta-restful-ws-tck-"$VERSION".jar -DgroupId=jakarta.ws.rs \
--DartifactId=jakarta-restful-ws-tck -Dversion="$VERSION" -Dpackaging=jar
\ No newline at end of file
diff --git a/tck/jax-rs/pom.xml b/tck/jax-rs/pom.xml
index ee6c39368c..acd1e0f9f8 100644
--- a/tck/jax-rs/pom.xml
+++ b/tck/jax-rs/pom.xml
@@ -31,38 +31,4 @@
         <module>jax-rs-tests-embedded</module>
         <module>jax-rs-signature-test</module>
     </modules>
-
-    <profiles>
-        <profile>
-            <id>tck-jax-rs</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-antrun-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <phase>validate</phase>
-                                <goals>
-                                    <goal>run</goal>
-                                </goals>
-                                <configuration>
-                                    <target>
-                                        <!-- If you use proxy you need to set 
it as a system properties -->
-                                        <get skipexisting="true" 
src="https://download.eclipse.org/ee4j/jakartaee-tck/jakartaee10/staged/eftl/jakarta-restful-ws-tck-${jaxrs.tck.version}.zip";
 dest="jakarta-restful-ws-tck-${jaxrs.tck.version}.zip" />
-                                        <unzip 
src="jakarta-restful-ws-tck-${jaxrs.tck.version}.zip" dest="./target" />
-                                        <chmod file="install-tck-artifact.sh" 
perm="+x" />
-                                        <exec executable="sh">
-                                            <arg line="install-tck-artifact.sh 
${jaxrs.tck.version}" />
-                                        </exec>
-                                    </target>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
 </project>
\ No newline at end of file

Reply via email to