This is an automated email from the ASF dual-hosted git repository. dblevins pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 3bc373f5dababd3f17d302450e2e072f43c30b0a Author: David Blevins <[email protected]> AuthorDate: Sun Feb 20 22:01:59 2022 -0500 Eliminate indirect 8.0.0-M3 dependency in the build --- pom.xml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 98c5613..892c32c 100644 --- a/pom.xml +++ b/pom.xml @@ -102,7 +102,8 @@ <!-- To easily change the javaee api version --> <version.javaee-api>8.0-5</version.javaee-api> - + <version.tomee-patch-plugin>0.8</version.tomee-patch-plugin> + <!-- Activation and JavaMail are both API and IMPL so we don't have them in the javaee-api uber jar. We decided to add them here in the project so we can patch/update the 2 libraries without having @@ -431,7 +432,20 @@ <plugin> <groupId>org.apache.tomee.patch</groupId> <artifactId>tomee-patch-plugin</artifactId> - <version>0.8</version> + <version>${version.tomee-patch-plugin}</version> + <dependencies> + <dependency> + <groupId>org.apache.tomee.patch</groupId> + <artifactId>tomee-patch-core</artifactId> + <version>${version.tomee-patch-plugin}</version> + <exclusions> + <exclusion> + <groupId>org.apache.tomee</groupId> + <artifactId>openejb-cxf-rs</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> </plugin> </plugins> </pluginManagement>
