diff --git a/boms/tomee-microprofile/pom.xml b/boms/tomee-microprofile/pom.xml index 90c00305c8a..b50f411d877 100644 --- a/boms/tomee-microprofile/pom.xml +++ b/boms/tomee-microprofile/pom.xml @@ -1794,17 +1794,6 @@ - - org.apache.tomee - tomee-microprofile-webapp - ${project.version} - - - * - * - - - org.apache.tomee tomee-mojarra diff --git a/boms/tomee-plume/pom.xml b/boms/tomee-plume/pom.xml index 2a8e9b71052..4748808b879 100644 --- a/boms/tomee-plume/pom.xml +++ b/boms/tomee-plume/pom.xml @@ -1882,17 +1882,6 @@ - - org.apache.tomee - tomee-plume-webapp - ${project.version} - - - * - * - - - org.apache.tomee tomee-security diff --git a/boms/tomee-plus/pom.xml b/boms/tomee-plus/pom.xml index 918a684cc85..1b94f8255f4 100644 --- a/boms/tomee-plus/pom.xml +++ b/boms/tomee-plus/pom.xml @@ -1904,17 +1904,6 @@ - - org.apache.tomee - tomee-plus-webapp - ${project.version} - - - * - * - - - org.apache.tomee tomee-security diff --git a/boms/tomee-webprofile/pom.xml b/boms/tomee-webprofile/pom.xml index a8ab520c8a6..304ed46b7c7 100644 --- a/boms/tomee-webprofile/pom.xml +++ b/boms/tomee-webprofile/pom.xml @@ -1211,17 +1211,6 @@ - - org.apache.tomee - tomee-webapp - ${project.version} - - - * - * - - - org.apache.ws.xmlschema xmlschema-core diff --git a/tomee/apache-tomee/src/test/java/org/apache/tomee/bootstrap/GenerateBoms.java b/tomee/apache-tomee/src/test/java/org/apache/tomee/bootstrap/GenerateBoms.java index ee6ead06e1a..3de94214c3b 100644 --- a/tomee/apache-tomee/src/test/java/org/apache/tomee/bootstrap/GenerateBoms.java +++ b/tomee/apache-tomee/src/test/java/org/apache/tomee/bootstrap/GenerateBoms.java @@ -362,6 +362,15 @@ private Distribution asDistribution(final File zip) { .filter(jar -> !jar.getName().equals("catalina-ant.jar")) .filter(jar -> !jar.getName().startsWith("tomcat-i18n")) .filter(jar -> !jar.getName().startsWith("jakartaee-migration")) + /* + Webapp distributions removed from BOM generation per: + - https://issues.apache.org/jira/browse/TOMEE-3724 + - https://lists.apache.org/thread/31w7336d5ycqhmoy4pngbsjg3odm0yqx + */ + .filter(jar -> !jar.getName().startsWith("tomee-plume-webapp")) + .filter(jar -> !jar.getName().startsWith("tomee-plus-webapp")) + .filter(jar -> !jar.getName().startsWith("tomee-microprofile-webapp")) + .filter(jar -> !jar.getName().startsWith("tomee-webapp")) .map(from) .filter(Objects::nonNull) .sorted()