Author: coheigea
Date: Wed Jan 14 06:48:34 2009
New Revision: 734409

URL: http://svn.apache.org/viewvc?rev=734409&view=rev
Log:
Some project updates for imminent 1.5.5 release.

Modified:
    webservices/wss4j/trunk/ChangeLog.txt
    webservices/wss4j/trunk/README.txt
    webservices/wss4j/trunk/build.xml
    webservices/wss4j/trunk/pom.xml
    webservices/wss4j/trunk/xdocs/index.xml

Modified: webservices/wss4j/trunk/ChangeLog.txt
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/trunk/ChangeLog.txt?rev=734409&r1=734408&r2=734409&view=diff
==============================================================================
--- webservices/wss4j/trunk/ChangeLog.txt (original)
+++ webservices/wss4j/trunk/ChangeLog.txt Wed Jan 14 06:48:34 2009
@@ -5,6 +5,38 @@
 Portions of this report were generated using the ReleaseNotes facility
 in Jira.
 
+Release 1.5.5
+=============
+
+** Bug
+    * [WSS-42] - java.lang.NoClassDefFoundError: 
org/apache/xml/security/encryption/XMLEncryptionException
+    * [WSS-94] - Security Breach : The client certificate signature is not 
verified if the serial number is known in the keystore
+    * [WSS-121] - Bug in default value for SAML issuer class property
+    * [WSS-126] - SignatureProcessor:verifyXMLSignature method - Crypto object 
can have null values in the following scenario but it throws an Exception if 
the Crypto object is null
+    * [WSS-129] - Couple places where "cause" of WSSecurityException not set
+    * [WSS-133] - Method and variable misspellings fixed
+    * [WSS-140] - WSSecEncryptedKey produces EncryptedKey element with invalid 
Id attribute
+    * [WSS-141] - handleUsernameToken gives too much information. Can be used 
to deternine if a username exists or not
+    * [WSS-142] - We ship opensaml 1.0.1 even though we use opensaml 1.1 in 
maven
+    * [WSS-149] - AbstractCrypto requires 
org.apache.ws.security.crypto.merlin.file to be set and point to an existing 
file
+** Improvement
+    * [WSS-85] - Better exception handling in the crypto (e.g. no 
e.printStackTrace())
+    * [WSS-122] - Some fixes for the website
+    * [WSS-123] - 1.5.4 requires opensaml jar, older versions did not
+    * [WSS-125] - Upgrade BouncyCastle version
+    * [WSS-128] - Use xml-sec 1.4.1 version
+    * [WSS-135] - Fix for minor checkstyle issues
+    * [WSS-137] - "Unexpected number of X509Data: for Signature" error doesn't 
make sense.
+    * [WSS-138] - Add Nabble to site mailing list page
+    * [WSS-145] - Problem in upgrading to xml-sec 1.4.2
+    * [WSS-150] - Upgrade to XALAN 2.7.1
+* New Feature
+    * [WSS-23] - no way to programmatically set crypto.properties
+* Task
+    * [WSS-124] - Get maven dependencies pushed to central
+    * [WSS-132] - TestWSSecurityX509v1 failing
+    * [WSS-144] - Remove tab characters from WSS4J files
+
 Release 1.5.4
 =============
 

Modified: webservices/wss4j/trunk/README.txt
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/trunk/README.txt?rev=734409&r1=734408&r2=734409&view=diff
==============================================================================
--- webservices/wss4j/trunk/README.txt (original)
+++ webservices/wss4j/trunk/README.txt Wed Jan 14 06:48:34 2009
@@ -190,6 +190,11 @@
     
     See: http://www.opensaml.org/
 
+serializer-2.7.1.jar
+    The Apache Xalan XML serializer library.
+    
+    See: http://xml.apache.org/xalan-j/
+
 wsdl4j-1.5.1.jar
     The WSDL parsing functions, required by Axis tools to read and
     parse WSDL.

Modified: webservices/wss4j/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/trunk/build.xml?rev=734409&r1=734408&r2=734409&view=diff
==============================================================================
--- webservices/wss4j/trunk/build.xml (original)
+++ webservices/wss4j/trunk/build.xml Wed Jan 14 06:48:34 2009
@@ -27,9 +27,9 @@
 
         <property name='product.version.major' value='1'/>
         <property name='product.version.minor' value='5'/>
-        <property name='product.version.level' value='4'/>
-        <property name='product.version' value='SNAPSHOT'/>
-        <!-- <property name='product.version' 
value='${product.version.major}.${product.version.minor}.${product.version.level}'/>
 -->
+        <property name='product.version.level' value='5'/>
+        <property name='product.version.qualifier' value='-SNAPSHOT'/>
+        <property name='product.version' 
value='${product.version.major}.${product.version.minor}.${product.version.level}${product.version.qualifier}'/>
         <property name="year" value="2008"/>
         <property name="copyright" value="Copyright &#169; ${year} Apache 
WSS4J Project. All Rights Reserved."/>
 
@@ -289,6 +289,11 @@
         description="This target copies the Java sources and brands the 
version information">
         <!-- create directories -->
         <mkdir dir="${build.classes}"/>
+        <copy todir="${build.classes}">
+            <fileset dir="${dir.src}">
+                <include name="META-INF/*"/>
+            </fileset>
+        </copy>
     </target>
 
     <target name="javadoc"
@@ -720,18 +725,18 @@
      <mkdir dir="${dir.dist}"/>
      <jar jarfile="${dir.dist}/${jar.library}"
        basedir="${build.classes}"
-       includes="**/apache/**/security/**"  />
+       includes="**/apache/**/security/**, META-INF/**"  />
      <zip destfile=
         "${dir.dist}/${product.shortname}-bin-${product.version}.zip">
         <zipfileset prefix="wss4j" dir="."
-          includes="keys/**, interop/**, interop2/**, test/**, samples/**,
-          LICENSE.txt, README.txt, NOTICE, legal/**, webapps/**"/>
+            includes="keys/**, interop/**, interop2/**, test/**, samples/**,
+                ChangeLog.txt, LICENSE.txt, README.txt, NOTICE, legal/**, 
webapps/**"/>
         <zipfileset prefix="wss4j/classes" dir="${build.classes}"
-          includes=
-     "*.properties, interop/**, wssec/**, org/**/oasis/**, org/**/samples/**"/>
+            includes=
+                "*.properties, interop/**, wssec/**, org/**/oasis/**, 
org/**/samples/**"/>
         <zipfileset prefix="wss4j/doc/api" dir="${build.javadoc}"/>
         <zipfileset fullpath="wss4j/${jar.library}" dir="${dir.dist}" 
-          includes="${jar.library}"/>
+            includes="${jar.library}"/>
       </zip>
     </target>
 
@@ -751,7 +756,7 @@
         <zip destfile=
                  "${dir.dist}/${product.shortname}-src-${product.version}.zip">
             <zipfileset prefix="wss4j" dir="."
-                includes="src/** LICENSE.txt README.txt NOTICE legal/** 
build.xml "/>
+                includes="src/** ChangeLog.txt LICENSE.txt README.txt NOTICE 
legal/** build.xml "/>
         </zip>
     </target>
 

Modified: webservices/wss4j/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/trunk/pom.xml?rev=734409&r1=734408&r2=734409&view=diff
==============================================================================
--- webservices/wss4j/trunk/pom.xml (original)
+++ webservices/wss4j/trunk/pom.xml Wed Jan 14 06:48:34 2009
@@ -102,7 +102,7 @@
         <url>http://svn.apache.org/viewvc/webservices/wss4j/trunk</url>
     </scm>
     <organization>
-        <name>Apache Software Foundation</name>
+        <name>The Apache Software Foundation</name>
         <url>http://www.apache.org/</url>
     </organization>
     
@@ -324,6 +324,7 @@
                     <groupId>bouncycastle</groupId>
                     <artifactId>bcprov-jdk14</artifactId>
                     <version>${bcprov.jdk14.version}</version>
+                    <scope>runtime</scope>
                 </dependency>
             </dependencies>
         </profile>
@@ -337,6 +338,7 @@
                     <groupId>bouncycastle</groupId>
                     <artifactId>bcprov-jdk15</artifactId>
                     <version>${bcprov.jdk15.version}</version>
+                    <scope>runtime</scope>
                 </dependency>
             </dependencies>
         </profile>
@@ -364,6 +366,7 @@
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
             <version>${commons.logging.version}</version>
+            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>commons-discovery</groupId>
@@ -381,26 +384,31 @@
             <groupId>org.apache.santuario</groupId>
             <artifactId>xmlsec</artifactId>
             <version>${xmlsec.version}</version>
+            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>xalan</groupId>
             <artifactId>xalan</artifactId>
             <version>${xalan.version}</version>
+            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>xerces</groupId>
             <artifactId>xercesImpl</artifactId>
             <version>${xerces.version}</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>xml-apis</groupId>
             <artifactId>xml-apis</artifactId>
             <version>${xml.apis.version}</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>${junit.version}</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.opensaml</groupId>
@@ -463,7 +471,8 @@
                 <artifactId>maven-changes-plugin</artifactId>
                 <version>2.0</version>
                 <configuration>
-                    <onlyCurrentVersion>true</onlyCurrentVersion>
+                    <!-- <onlyCurrentVersion>true</onlyCurrentVersion> -->
+                    <fixVersionIds>12313215</fixVersionIds>
                     <resolutionIds>Any</resolutionIds>
                     <statusIds>Closed</statusIds>
                     <sortColumnNames>Key</sortColumnNames>

Modified: webservices/wss4j/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/trunk/xdocs/index.xml?rev=734409&r1=734408&r2=734409&view=diff
==============================================================================
--- webservices/wss4j/trunk/xdocs/index.xml (original)
+++ webservices/wss4j/trunk/xdocs/index.xml Wed Jan 14 06:48:34 2009
@@ -59,7 +59,7 @@
                 <p style="margin-left: 40px;">You can download the latest 
version of WSS4J at the following URL:<br/>
                     <a 
href="http://www.apache.org/dyn/closer.cgi/ws/wss4j/";>http://www.apache.org/dyn/closer.cgi/ws/wss4j/</a>
                 </p>
-                <p style="margin-left: 40px;">The latest release of WSS4J is 
version 1.5.4.
+                <p style="margin-left: 40px;">The latest release of WSS4J is 
version 1.5.5.
                 </p>
             </subsection>
             <subsection name="WS-Security Features">



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to