This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit f462a5d05277a2ae7ee6a275626d0bdeb9c9cdfc Author: Richard Zowalla <[email protected]> AuthorDate: Thu Jun 17 08:19:07 2021 +0200 Make sure, that the quick build profile also builds "tomee-webapp". --- tomee/apache-tomee/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tomee/apache-tomee/pom.xml b/tomee/apache-tomee/pom.xml index 4d9927f..3efb68d 100644 --- a/tomee/apache-tomee/pom.xml +++ b/tomee/apache-tomee/pom.xml @@ -92,6 +92,13 @@ </dependency> <dependency> <!-- to be sure to have it --> <groupId>${project.groupId}</groupId> + <artifactId>tomee-webapp</artifactId> + <version>${project.version}</version> + <type>war</type> + <scope>provided</scope> + </dependency> + <dependency> <!-- to be sure to have it --> + <groupId>${project.groupId}</groupId> <artifactId>tomee-plus-webapp</artifactId> <version>${project.version}</version> <type>war</type>
