[java-opensaml COMMIT] in /trunk: opensaml-core/pom.xml opensaml-security-api/pom.xml opensaml-security-impl/pom.xml ...
noreply at shibboleth.net
noreply at shibboleth.net
Fri Jan 18 19:12:48 EST 2013
Author: putmanb
Date: Fri Jan 18 19:12:48 2013
New Revision: 3155
URL: http://svn.shibboleth.net/view/java-opensaml?rev=3155&view=rev
Log:
OSJ-32: Convert util module from being a dependency of core to an optional module that individual modules import as needed
Modified:
trunk/opensaml-core/pom.xml
trunk/opensaml-security-api/pom.xml
trunk/opensaml-security-impl/pom.xml
trunk/opensaml-util/pom.xml
Modified: trunk/opensaml-core/pom.xml
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-core/pom.xml?rev=3155&r1=3154&r2=3155&view=diff
==============================================================================
--- trunk/opensaml-core/pom.xml (original)
+++ trunk/opensaml-core/pom.xml Fri Jan 18 19:12:48 2013
@@ -17,10 +17,17 @@
<dependencies>
<!-- Compile Dependencies -->
+ <!--
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>opensaml-util</artifactId>
<version>${project.version}</version>
+ </dependency>
+ -->
+
+ <dependency>
+ <groupId>joda-time</groupId>
+ <artifactId>joda-time</artifactId>
</dependency>
<!-- Provided Dependencies -->
Modified: trunk/opensaml-security-api/pom.xml
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-security-api/pom.xml?rev=3155&r1=3154&r2=3155&view=diff
==============================================================================
--- trunk/opensaml-security-api/pom.xml (original)
+++ trunk/opensaml-security-api/pom.xml Fri Jan 18 19:12:48 2013
@@ -27,6 +27,11 @@
<groupId>org.apache.santuario</groupId>
<artifactId>xmlsec</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>edu.vt.middleware</groupId>
+ <artifactId>vt-crypt</artifactId>
+ </dependency>
<!-- Provided Dependencies -->
Modified: trunk/opensaml-security-impl/pom.xml
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-security-impl/pom.xml?rev=3155&r1=3154&r2=3155&view=diff
==============================================================================
--- trunk/opensaml-security-impl/pom.xml (original)
+++ trunk/opensaml-security-impl/pom.xml Fri Jan 18 19:12:48 2013
@@ -22,6 +22,12 @@
<artifactId>opensaml-security-api</artifactId>
<version>${project.version}</version>
</dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>opensaml-util</artifactId>
+ <version>${project.version}</version>
+ </dependency>
<!-- Provided Dependencies -->
Modified: trunk/opensaml-util/pom.xml
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-util/pom.xml?rev=3155&r1=3154&r2=3155&view=diff
==============================================================================
--- trunk/opensaml-util/pom.xml (original)
+++ trunk/opensaml-util/pom.xml Fri Jan 18 19:12:48 2013
@@ -18,25 +18,11 @@
<dependencies>
<!-- Compile Dependencies -->
<dependency>
- <!-- Required if you're using the HttpResource or HttpClientBuilder -->
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>edu.vt.middleware</groupId>
- <artifactId>vt-crypt</artifactId>
- </dependency>
- <dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<!-- Provided Dependencies -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- </dependency>
<!-- Runtime Dependencies -->
More information about the commits
mailing list