You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2018/10/04 10:41:16 UTC

[isis] branch v2 updated: ISIS-1976: remove meta-model dependency on 'javax.inject' and 'javax.validation' since already provided by JEE API

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/v2 by this push:
     new 51ea2ad  ISIS-1976: remove meta-model dependency on 'javax.inject' and 'javax.validation' since already provided by JEE API
51ea2ad is described below

commit 51ea2ade8e4a03ea9ab0988477e6c2ea8beddd6f
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Oct 4 12:37:19 2018 +0200

    ISIS-1976: remove meta-model dependency on 'javax.inject' and
    'javax.validation' since already
    provided by JEE API
    
    Task-Url: https://issues.apache.org/jira/browse/ISIS-1976
---
 core/metamodel/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/core/metamodel/pom.xml b/core/metamodel/pom.xml
index 03f2e80..dd5cbcf 100644
--- a/core/metamodel/pom.xml
+++ b/core/metamodel/pom.xml
@@ -96,6 +96,11 @@
             		<groupId>com.google.guava</groupId>
             		<artifactId>guava</artifactId>
             	</exclusion>
+            	<!-- already provided by JEE API -->
+            	<exclusion>
+            		<groupId>javax.inject</groupId>
+            		<artifactId>javax.inject</artifactId>
+            	</exclusion>
             </exclusions>
         </dependency>
 
@@ -108,6 +113,11 @@
             		<groupId>com.google.guava</groupId>
             		<artifactId>guava</artifactId>
             	</exclusion>
+            	<!-- already provided by JEE API -->
+            	<exclusion>
+            		<groupId>javax.validation</groupId>
+            		<artifactId>validation-api</artifactId>
+            	</exclusion>
             </exclusions>
         </dependency>
     </dependencies>