Author: coheigea
Date: Sat Sep 18 13:44:19 2010
New Revision: 998466

URL: http://svn.apache.org/viewvc?rev=998466&view=rev
Log:
Added plugin versions back to the pom, with some updates
 - JDK 1.4 compatibility fix to one of the tests as well.

Modified:
    webservices/wss4j/branches/1_5_x-fixes/pom.xml
    webservices/wss4j/branches/1_5_x-fixes/test/wssec/TestWSSecurityNew6.java

Modified: webservices/wss4j/branches/1_5_x-fixes/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/branches/1_5_x-fixes/pom.xml?rev=998466&r1=998465&r2=998466&view=diff
==============================================================================
--- webservices/wss4j/branches/1_5_x-fixes/pom.xml (original)
+++ webservices/wss4j/branches/1_5_x-fixes/pom.xml Sat Sep 18 13:44:19 2010
@@ -149,6 +149,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-pmd-plugin</artifactId>
+                <version>2.5</version>
                 <configuration>
                     <linkXRef>false</linkXRef>
                     <failOnViolation>true</failOnViolation>
@@ -229,6 +230,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.6</version>
                     <configuration>
                         <reportFormat>brief</reportFormat>
                         <useFile>false</useFile>
@@ -243,6 +245,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-release-plugin</artifactId>
+                    <version>2.0</version>
                     <configuration>
                         <tagBase>
                             
https://svn.apache.org/repos/asf/webservices/wss4j/tags/
@@ -252,6 +255,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-compiler-plugin</artifactId>
+                    <version>2.1</version>
                     <configuration>
                         <source>1.3</source>
                         <target>1.3</target>
@@ -263,6 +267,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-source-plugin</artifactId>
+                    <version>2.1.2</version>
                     <executions>
                         <execution>
                             <goals>
@@ -277,6 +282,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.7</version>
                     <executions>
                         <execution>
                             <goals>
@@ -291,6 +297,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-assembly-plugin</artifactId>
+                    <version>2.1</version>
                     <configuration>
                         <descriptors>
                             <descriptor>assembly/bin.xml</descriptor>

Modified: 
webservices/wss4j/branches/1_5_x-fixes/test/wssec/TestWSSecurityNew6.java
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/branches/1_5_x-fixes/test/wssec/TestWSSecurityNew6.java?rev=998466&r1=998465&r2=998466&view=diff
==============================================================================
--- webservices/wss4j/branches/1_5_x-fixes/test/wssec/TestWSSecurityNew6.java 
(original)
+++ webservices/wss4j/branches/1_5_x-fixes/test/wssec/TestWSSecurityNew6.java 
Sat Sep 18 13:44:19 2010
@@ -229,8 +229,8 @@ public class TestWSSecurityNew6 extends 
         assertNull(((WSDataRef) sigDataRefs.get(0))
                 .getProtectedElement().getAttributeNodeNS(WSConstants.WSU_NS, 
"Id"));
         
-        assertTrue(((WSDataRef) sigDataRefs.get(0)).getWsuId().contains(
-                ((WSDataRef) encDataRefs.get(0)).getWsuId()));
+        assertTrue(((WSDataRef) sigDataRefs.get(0)).getWsuId().indexOf(
+                ((WSDataRef) encDataRefs.get(0)).getWsuId()) != -1);
     }
     
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscr...@ws.apache.org
For additional commands, e-mail: wss4j-dev-h...@ws.apache.org

Reply via email to