You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by as...@apache.org on 2014/11/04 14:49:14 UTC

svn commit: r1636581 - in /oltu/trunk: commons/encodedtoken/pom.xml oauth-2.0/pom.xml

Author: asanso
Date: Tue Nov  4 13:49:13 2014
New Revision: 1636581

URL: http://svn.apache.org/r1636581
Log:
OLTU-147 - Upgrade commons-codec 1.8 to 1.9

re-applied patch provided by Christian Mueller (slightly modified)

Modified:
    oltu/trunk/commons/encodedtoken/pom.xml
    oltu/trunk/oauth-2.0/pom.xml

Modified: oltu/trunk/commons/encodedtoken/pom.xml
URL: http://svn.apache.org/viewvc/oltu/trunk/commons/encodedtoken/pom.xml?rev=1636581&r1=1636580&r2=1636581&view=diff
==============================================================================
--- oltu/trunk/commons/encodedtoken/pom.xml (original)
+++ oltu/trunk/commons/encodedtoken/pom.xml Tue Nov  4 13:49:13 2014
@@ -30,12 +30,19 @@
 
   <name>Apache Oltu - Commons - Encoded Token</name>
   <description>Apache Oltu Encoded Token shared utility</description>
+  
+  <properties>
+    <!--
+   	OSGi settings
+    -->
+    <osgi.import>org.apache.commons.codec.binary;version="[1.4,2)"</osgi.import>
+  </properties>
 
   <dependencies>
     <dependency>
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>
-      <version>1.8</version>
+      <version>1.9</version>
     </dependency>
   </dependencies>
 

Modified: oltu/trunk/oauth-2.0/pom.xml
URL: http://svn.apache.org/viewvc/oltu/trunk/oauth-2.0/pom.xml?rev=1636581&r1=1636580&r2=1636581&view=diff
==============================================================================
--- oltu/trunk/oauth-2.0/pom.xml (original)
+++ oltu/trunk/oauth-2.0/pom.xml Tue Nov  4 13:49:13 2014
@@ -96,7 +96,7 @@
       <dependency>
         <groupId>commons-codec</groupId>
         <artifactId>commons-codec</artifactId>
-        <version>1.8</version>
+        <version>1.9</version>
       </dependency>
     </dependencies>
   </dependencyManagement>