You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2006/01/04 15:04:09 UTC

svn commit: r365909 - in /myfaces/commons/trunk: pom.xml src/test/java/org/apache/myfaces/util/StateUtilsBlowfish_ECBTestCase.java

Author: mmarinschek
Date: Wed Jan  4 06:04:03 2006
New Revision: 365909

URL: http://svn.apache.org/viewcvs?rev=365909&view=rev
Log:
thanks to Bernd for fixing this

Modified:
    myfaces/commons/trunk/pom.xml
    myfaces/commons/trunk/src/test/java/org/apache/myfaces/util/StateUtilsBlowfish_ECBTestCase.java

Modified: myfaces/commons/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/pom.xml?rev=365909&r1=365908&r2=365909&view=diff
==============================================================================
--- myfaces/commons/trunk/pom.xml (original)
+++ myfaces/commons/trunk/pom.xml Wed Jan  4 06:04:03 2006
@@ -4,7 +4,6 @@
   <groupId>org.apache.myfaces</groupId>
   <artifactId>myfaces-commons</artifactId>
   <packaging>jar</packaging>
-  <version>1.1.2-SNAPSHOT</version>
   <name>MyFaces Commons</name>
   <url>http://myfaces.apache.org</url>
   <description>
@@ -20,7 +19,7 @@
     <dependency>
       <groupId>org.apache.myfaces</groupId>
       <artifactId>myfaces-api</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
+       <version>${version}</version>
 			<scope>compile</scope>
     </dependency>
 

Modified: myfaces/commons/trunk/src/test/java/org/apache/myfaces/util/StateUtilsBlowfish_ECBTestCase.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/test/java/org/apache/myfaces/util/StateUtilsBlowfish_ECBTestCase.java?rev=365909&r1=365908&r2=365909&view=diff
==============================================================================
--- myfaces/commons/trunk/src/test/java/org/apache/myfaces/util/StateUtilsBlowfish_ECBTestCase.java (original)
+++ myfaces/commons/trunk/src/test/java/org/apache/myfaces/util/StateUtilsBlowfish_ECBTestCase.java Wed Jan  4 06:04:03 2006
@@ -21,6 +21,6 @@
 		System.setProperty(StateUtils.INIT_SECRET, BASE64_KEY_SIZE_16);
 		System.setProperty(StateUtils.INIT_ALGORITHM, "Blowfish");
 		System.setProperty(StateUtils.INIT_ALGORITHM_PARAM, "ECB/PKCS5Padding");
-	}	
+	}
 	
 }