This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch tomee-8.x in repository https://gitbox.apache.org/repos/asf/tomee.git
commit e8cf3c9548ed77215bbadf2fdbeb00348831900f Author: Richard Zowalla <[email protected]> AuthorDate: Wed May 3 09:23:47 2023 +0200 TOMEE-4204 | TOMEE-4181 - Exclude bcpkix, bcprov and bcutil from patch plugin for profile "plume" --- tomee/apache-tomee/pom.xml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tomee/apache-tomee/pom.xml b/tomee/apache-tomee/pom.xml index 83f68e47ad..3dda7642b2 100644 --- a/tomee/apache-tomee/pom.xml +++ b/tomee/apache-tomee/pom.xml @@ -564,7 +564,9 @@ <createTarGz>true</createTarGz> <skips> <jars> - <bcprov-jdk15on-1.70.jar>org.bouncycastle:bcprov-jdk15on:jar:1.70</bcprov-jdk15on-1.70.jar> + <bcpkix-jdk15to18-1.73.jar>org.bouncycastle:bcpkix-jdk15to18:jar:1.73</bcpkix-jdk15to18-1.73.jar> + <bcprov-jdk15to18-1.73.jar>org.bouncycastle:bcprov-jdk15to18:jar:1.73</bcprov-jdk15to18-1.73.jar> + <bcutil-jdk15to18-1.73.jar>org.bouncycastle:bcutil-jdk15to18:jar:1.73</bcutil-jdk15to18-1.73.jar> </jars> </skips> </configuration> @@ -793,11 +795,13 @@ <select>apache-tomee-(plus|plume|webprofile|microprofile).*\.zip</select> <skipTransform>true</skipTransform> <createTarGz>true</createTarGz> - <replace> - <resources> - <ServerInfo.properties>${project.build.sourceDirectory}/ServerInfo.properties</ServerInfo.properties> - </resources> - </replace> + <skips> + <jars> + <bcpkix-jdk15to18-1.73.jar>org.bouncycastle:bcpkix-jdk15to18:jar:1.73</bcpkix-jdk15to18-1.73.jar> + <bcprov-jdk15to18-1.73.jar>org.bouncycastle:bcprov-jdk15to18:jar:1.73</bcprov-jdk15to18-1.73.jar> + <bcutil-jdk15to18-1.73.jar>org.bouncycastle:bcutil-jdk15to18:jar:1.73</bcutil-jdk15to18-1.73.jar> + </jars> + </skips> </configuration> <executions> <execution>
