You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2021/05/01 01:56:04 UTC

[tomee-jakarta] branch master updated: Add an explicit dependency on bval, then mark it provided

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-jakarta.git


The following commit(s) were added to refs/heads/master by this push:
     new 5d4d96f  Add an explicit dependency on bval, then mark it provided
     new f0096a5  Merge branch 'master' of github.com:apache/tomee-jakarta
5d4d96f is described below

commit 5d4d96f6cf5212ec6ae8be53453077a18d3058c6
Author: David Blevins <da...@gmail.com>
AuthorDate: Fri Apr 30 18:55:25 2021 -0700

    Add an explicit dependency on bval, then mark it provided
---
 tomee/tomee-plume-webapp/pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/tomee/tomee-plume-webapp/pom.xml b/tomee/tomee-plume-webapp/pom.xml
index 9108aa1..ab24314 100644
--- a/tomee/tomee-plume-webapp/pom.xml
+++ b/tomee/tomee-plume-webapp/pom.xml
@@ -38,6 +38,12 @@
   </properties>
   <dependencies>
 
+    <dependency>
+      <groupId>org.apache.bval</groupId>
+      <artifactId>bval-jsr</artifactId>
+      <version>2.0.5</version>
+      <scope>provided</scope>
+    </dependency>
     <dependency><!-- needed by myfaces -->
       <groupId>commons-beanutils</groupId>
       <artifactId>commons-beanutils</artifactId>
@@ -72,7 +78,7 @@
       <exclusions>
         <exclusion>
           <groupId>org.apache.bval</groupId>
-          <artifactId>*</artifactId>
+          <artifactId>bval-jsr</artifactId>
         </exclusion>
       </exclusions>
     </dependency>