You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by ta...@apache.org on 2011/09/28 20:08:45 UTC

svn commit: r1176996 - in /tapestry/tapestry5/trunk: tapestry-core/build.gradle tapestry-upload/build.gradle

Author: tawus
Date: Wed Sep 28 18:08:44 2011
New Revision: 1176996

URL: http://svn.apache.org/viewvc?rev=1176996&view=rev
Log:
Refs #TAP5-1653: Upgrade commons-code to 1.5 and commons-io to 1.2.2

Modified:
    tapestry/tapestry5/trunk/tapestry-core/build.gradle
    tapestry/tapestry5/trunk/tapestry-upload/build.gradle

Modified: tapestry/tapestry5/trunk/tapestry-core/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/build.gradle?rev=1176996&r1=1176995&r2=1176996&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-core/build.gradle Wed Sep 28 18:08:44 2011
@@ -18,7 +18,7 @@ dependencies {
     provided project(":tapestry-test")
     provided "javax.servlet:servlet-api:$servletAPIVersion"
 
-    compile "commons-codec:commons-codec:1.4"
+    compile "commons-codec:commons-codec:1.5"
 
     // Transitive will bring in the unwanted string template library as well
     compile "org.antlr:antlr-runtime:3.3", { transitive = false }

Modified: tapestry/tapestry5/trunk/tapestry-upload/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-upload/build.gradle?rev=1176996&r1=1176995&r2=1176996&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-upload/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-upload/build.gradle Wed Sep 28 18:08:44 2011
@@ -2,7 +2,7 @@ description = "File Upload component, wi
 
 dependencies {
   compile project(':tapestry-core')
-  compile "commons-fileupload:commons-fileupload:1.2.1"
+  compile "commons-fileupload:commons-fileupload:1.2.2"
   compile "commons-io:commons-io:2.0.1"
   provided "javax.servlet:servlet-api:$servletAPIVersion"