Skip to content

Commit d2d57cc

Browse files
committed
GRAILS-11088 update commons-fileupload to 1.3.1 version
- depends on commons-io 2.2 version
1 parent 96d0a02 commit d2d57cc

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

LICENSE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ SECTION 2: Apache License, V2.0
237237
>>> commons-codec.commons-codec-1.5
238238
>>> commons-collections-3.2.1
239239
>>> commons-dbcp-1.4
240-
>>> commons-fileupload-1.2.2
241-
>>> commons-io-2.1
240+
>>> commons-fileupload-1.3.1
241+
>>> commons-io-2.2
242242
>>> commons-lang-2.6
243243
>>> commons-pool-1.5.6
244244
>>> commons-validator-1.3.1
@@ -872,7 +872,7 @@ This product includes software developed by
872872
The Apache Software Foundation (http://www.apache.org/).
873873

874874

875-
>>> commons-fileupload-1.2.2
875+
>>> commons-fileupload-1.3.1
876876

877877
Licensed to the Apache Software Foundation (ASF) under one or more
878878
contributor license agreements. See the NOTICE file distributed with
@@ -890,7 +890,7 @@ See the License for the specific language governing permissions and
890890
limitations under the License.
891891

892892

893-
>>> commons-io-2.1
893+
>>> commons-io-2.2
894894

895895
Licensed to the Apache Software Foundation (ASF) under one or more
896896
contributor license agreements. See the NOTICE file distributed with

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
//mavenRepo(urls: 'http://evgeny-goldin.org/artifactory/repo/')
77
}
88
dependencies {
9-
classpath "commons-io:commons-io:2.1"
9+
classpath "commons-io:commons-io:2.2"
1010
//classpath "com.goldin.plugins:gradle:0.1-RC3" // http://evgeny-goldin.com/wiki/Gradle-duplicates-plugin
1111
}
1212
}
@@ -22,7 +22,7 @@ ext {
2222
commonsBeanUtilsVersion = "1.8.3"
2323
commonsCliVersion = "1.2"
2424
commonsCollectionsVersion = "3.2.1"
25-
commonsIOVersion = "2.1"
25+
commonsIOVersion = "2.2"
2626
commonsLangVersion = "2.6"
2727
datastoreVersion = "1.1.8.RELEASE"
2828
gantVersion = "1.9.6"

grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsCoreDependencies.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public Object doCall() {
178178
ModuleRevisionId.newInstance("com.googlecode.concurrentlinkedhashmap", "concurrentlinkedhashmap-lru", "1.3.1"),
179179
ModuleRevisionId.newInstance("commons-codec", "commons-codec", "1.5"),
180180
ModuleRevisionId.newInstance("commons-collections", "commons-collections", "3.2.1"),
181-
ModuleRevisionId.newInstance("commons-io", "commons-io", "2.1"),
181+
ModuleRevisionId.newInstance("commons-io", "commons-io", "2.2"),
182182
ModuleRevisionId.newInstance("commons-lang", "commons-lang", "2.6"),
183183
ModuleRevisionId.newInstance("javax.transaction", "jta", "1.1"),
184184
ModuleRevisionId.newInstance("org.hibernate.javax.persistence", "hibernate-jpa-2.0-api", "1.0.1.Final"),
@@ -286,7 +286,7 @@ public Object doCall() {
286286
ModuleRevisionId.newInstance("org.aspectj", "aspectjrt", "1.6.10"),
287287
ModuleRevisionId.newInstance("cglib", "cglib", "2.2"),
288288
ModuleRevisionId.newInstance("asm", "asm", "3.1"),
289-
ModuleRevisionId.newInstance("commons-fileupload", "commons-fileupload", "1.2.2"),
289+
ModuleRevisionId.newInstance("commons-fileupload", "commons-fileupload", "1.3.1"),
290290
ModuleRevisionId.newInstance("oro", "oro", "2.0.8"),
291291
// data source
292292

grails-test-suite-uber/src/test/groovy/org/codehaus/groovy/grails/resolve/IvyDependencyManagerTests.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -937,8 +937,8 @@ class IvyDependencyManagerTests extends GroovyTestCase {
937937
"commons-beanutils:commons-beanutils:1.8.0",
938938
"commons-collections:commons-collections:3.2.1",
939939
"commons-dbcp:commons-dbcp:1.3",
940-
"commons-fileupload:commons-fileupload:1.2.1",
941-
"commons-io:commons-io:1.4",
940+
"commons-fileupload:commons-fileupload-1.3.1",
941+
"commons-io:commons-io:2.2",
942942
"commons-lang:commons-lang:2.4",
943943
"javax.transaction:jta:1.1",
944944
"log4j:log4j:1.2.16",

0 commit comments

Comments
 (0)