You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2015/10/22 18:03:57 UTC

svn commit: r1710046 - in /webservices/wss4j/branches/1_6_x-fixes: ChangeLog.txt pom.xml

Author: coheigea
Date: Thu Oct 22 16:03:55 2015
New Revision: 1710046

URL: http://svn.apache.org/viewvc?rev=1710046&view=rev
Log:
Preparing for release

Modified:
    webservices/wss4j/branches/1_6_x-fixes/ChangeLog.txt
    webservices/wss4j/branches/1_6_x-fixes/pom.xml

Modified: webservices/wss4j/branches/1_6_x-fixes/ChangeLog.txt
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/1_6_x-fixes/ChangeLog.txt?rev=1710046&r1=1710045&r2=1710046&view=diff
==============================================================================
--- webservices/wss4j/branches/1_6_x-fixes/ChangeLog.txt (original)
+++ webservices/wss4j/branches/1_6_x-fixes/ChangeLog.txt Thu Oct 22 16:03:55 2015
@@ -5,6 +5,20 @@ for a given release.
 Portions of this report were generated using the ReleaseNotes facility
 in Jira.
 
+Release 1.6.19
+=============
+
+Bug
+
+    [WSS-535] - Add WSSE and WSU xmlns definitions to signature's SecurityTokenReference
+    [WSS-536] - WSSecurityUtil.getCipherInstance() does not use configured provider
+    [WSS-548] - logging secretKey
+    [WSS-552] - The KerberosServiceExceptionAction and KerberosClientExceptionAction do not support HP JDK
+
+Improvement
+
+    [WSS-533] - Also use signing key when trying to detect message replay attacks
+
 Release 1.6.16
 =============
 

Modified: webservices/wss4j/branches/1_6_x-fixes/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/1_6_x-fixes/pom.xml?rev=1710046&r1=1710045&r2=1710046&view=diff
==============================================================================
--- webservices/wss4j/branches/1_6_x-fixes/pom.xml (original)
+++ webservices/wss4j/branches/1_6_x-fixes/pom.xml Thu Oct 22 16:03:55 2015
@@ -214,6 +214,54 @@
                 <artifactId>maven-site-plugin</artifactId>
                 <version>3.3</version>
             </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>animal-sniffer-maven-plugin</artifactId>
+                <version>1.13</version>
+                <configuration>
+                    <signature>
+                        <groupId>org.codehaus.mojo.signature</groupId>
+                        <artifactId>java15</artifactId>
+                        <version>1.0</version>
+                   </signature>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>check-java-compatibility</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-enforcer-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>enforce-bytecode-version</id>
+                        <goals>
+                            <goal>enforce</goal>
+                        </goals>
+                        <configuration>
+                            <rules>
+                                <enforceBytecodeVersion>
+                                    <maxJdkVersion>1.5</maxJdkVersion>
+                                </enforceBytecodeVersion>
+                            </rules>
+                            <fail>true</fail>
+                        </configuration>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>extra-enforcer-rules</artifactId>
+                        <version>1.0-beta-3</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
 
         <pluginManagement>