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/02/28 22:17:56 UTC

[isis] branch master updated: ISIS-1841 fixing dependencies

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 67c0389  ISIS-1841 fixing dependencies
67c0389 is described below

commit 67c03894706fcd2f01b35d9e08a736fce141861f
Author: Andi Huber <ah...@apache.org>
AuthorDate: Wed Feb 28 23:17:52 2018 +0100

    ISIS-1841 fixing dependencies
---
 core/applib-legacy/pom.xml | 17 +++++++++++++++++
 core/applib/pom.xml        | 11 +++++++++++
 2 files changed, 28 insertions(+)

diff --git a/core/applib-legacy/pom.xml b/core/applib-legacy/pom.xml
index 0daee1e..bec8544 100644
--- a/core/applib-legacy/pom.xml
+++ b/core/applib-legacy/pom.xml
@@ -69,6 +69,23 @@
 			<type>test-jar</type>
 			<scope>test</scope>
 		</dependency>
+		
+		<dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>isis-core-unittestsupport</artifactId>
+            <scope>test</scope>
+            <exclusions>
+            	<!-- whatever unittestsupport is dependent on, it should not be transitive  -->
+            	<exclusion>
+            		<groupId>org.reflections</groupId>
+            		<artifactId>reflections</artifactId>
+            	</exclusion>
+            	<exclusion>
+	            	<groupId>com.google.guava</groupId>
+					<artifactId>guava</artifactId>
+            	</exclusion>
+            </exclusions>
+        </dependency>
 
 	</dependencies>
 
diff --git a/core/applib/pom.xml b/core/applib/pom.xml
index 4d9c653..ea3f9da 100644
--- a/core/applib/pom.xml
+++ b/core/applib/pom.xml
@@ -94,6 +94,17 @@
     </build>
 
     <dependencies>
+    
+    	<!--
+    		removal in progress 
+    		last remaining compile dependency is for guava's event bus
+    	-->
+		<dependency>
+			<groupId>com.google.guava</groupId>
+			<artifactId>guava</artifactId>
+			<optional>true</optional>
+		</dependency>
+    
         <dependency>
             <groupId>org.apache.isis.core</groupId>
             <artifactId>isis-core-schema</artifactId>

-- 
To stop receiving notification emails like this one, please contact
ahuber@apache.org.