[java-openws COMMIT] in /branches/REL_1: doc/README.txt doc/RELEASE-NOTES.txt pom.xml src/main/assembly/bin.xml
noreply at shibboleth.net
noreply at shibboleth.net
Sun Feb 26 12:06:41 GMT 2012
Author: lajoie
Date: Sun Feb 26 12:06:41 2012
New Revision: 427
URL: http://svn.shibboleth.net/view/java-openws?rev=427&view=rev
Log:
Clean up assembly descriptor - JOWS-35
update links in README
Modified:
branches/REL_1/doc/README.txt
branches/REL_1/doc/RELEASE-NOTES.txt
branches/REL_1/pom.xml
branches/REL_1/src/main/assembly/bin.xml
Modified: branches/REL_1/doc/README.txt
URL: http://svn.shibboleth.net/view/java-openws/branches/REL_1/doc/README.txt?rev=427&r1=426&r2=427&view=diff
==============================================================================
--- branches/REL_1/doc/README.txt (original)
+++ branches/REL_1/doc/README.txt Sun Feb 26 12:06:41 2012
@@ -15,11 +15,11 @@
Feedback
--------
-Feedback may be provided through the OpenSAML mailing list.
-https://wiki.shibboleth.net/confluence/display/OpenSAML/MailingList
+Feedback may be provided through the Shibboleth development mailing list.
+http://shibboleth.internet2.edu/lists.html
Issues, Suggestions
--------
Issues or suggestions for improvement may submitted to the OpenWS - Java
project at:
-http://bugs.internet2.edu/jira
+https://issues.shibboleth.net/jira/browse/JOWS
Modified: branches/REL_1/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/java-openws/branches/REL_1/doc/RELEASE-NOTES.txt?rev=427&r1=426&r2=427&view=diff
==============================================================================
--- branches/REL_1/doc/RELEASE-NOTES.txt (original)
+++ branches/REL_1/doc/RELEASE-NOTES.txt Sun Feb 26 12:06:41 2012
@@ -2,6 +2,7 @@
==============================================
[JOWS-33] - HttpResource does not properly release HTTP connnections
[JOWS-34] - Update dependencies
+[JOWS-35] - Clean up maven assembly description
Changes in Release 1.4.3
==============================================
Modified: branches/REL_1/pom.xml
URL: http://svn.shibboleth.net/view/java-openws/branches/REL_1/pom.xml?rev=427&r1=426&r2=427&view=diff
==============================================================================
--- branches/REL_1/pom.xml (original)
+++ branches/REL_1/pom.xml Sun Feb 26 12:06:41 2012
@@ -24,6 +24,7 @@
<properties>
<svn.relative.location>java-openws</svn.relative.location>
+ <xmltooling.version>1.3.4</xmltooling.version>
</properties>
<repositories>
@@ -48,7 +49,7 @@
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>xmltooling</artifactId>
- <version>1.3.4</version>
+ <version>${xmltooling.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
@@ -74,10 +75,49 @@
<!-- Provided dependencies -->
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </dependency>
+
+ <!-- Runtime dependencies -->
+ <dependency>
+ <groupId>${xerces.groupId}</groupId>
+ <artifactId>xml-apis</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${xerces.groupId}</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${xerces.groupId}</groupId>
+ <artifactId>serializer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xml-resolver</groupId>
+ <artifactId>xml-resolver</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${xalan.groupId}</groupId>
+ <artifactId>xalan</artifactId>
+ </dependency>
+
+ <!-- Test dependencies -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>2.0.8</version>
- <scope>provided</scope>
+ <scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
@@ -89,54 +129,13 @@
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
<version>2.0.8</version>
- <scope>provided</scope>
+ <scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
- </dependency>
-
- <!-- Runtime dependencies -->
-
- <!-- Test dependencies -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
[... 93 lines stripped ...]
More information about the commits
mailing list