PL-9485 Spring CommonsMultipartResolver requires commons-fileupload

This commit is contained in:
Yuriy Artamonov 2017-08-05 16:24:04 +04:00
parent 105823badb
commit f42baa8773
2 changed files with 6 additions and 0 deletions

View File

@ -238,6 +238,7 @@ configure(globalModule) {
compile(bom['org.apache.commons:commons-collections4'])
compile(bom['commons-io:commons-io'])
compile(bom['commons-cli:commons-cli'])
compile(bom['commons-codec:commons-codec'])
compile(bom['org.apache.httpcomponents:httpclient']) // simplify version management for selenium
compile(bom['org.apache.commons:commons-pool2'])
@ -556,6 +557,7 @@ configure(webModule) {
compile(idpModule)
compile(bom['org.springframework:spring-webmvc'])
compile(bom['commons-fileupload:commons-fileupload']) // required for Spring multipart resolver
compile(bom['com.vaadin:vaadin-push']) {
exclude(group: 'com.vaadin.external.atmosphere', module: 'atmosphere-runtime')
@ -801,6 +803,8 @@ configure(restApiModule) {
compile(clientModule)
compile(sharedLibModule)
compile(bom['commons-fileupload:commons-fileupload']) // required for Spring multipart resolver
compile(bom['org.springframework:spring-webmvc'])
compile(bom['org.springframework:spring-context-support'])

View File

@ -25,6 +25,8 @@ commons-logging/commons-logging = 1.2
commons-lang/commons-lang = 2.6
commons-io/commons-io = 2.5
commons-cli/commons-cli = 1.4
commons-codec/commons-codec = 1.10
commons-fileupload/commons-fileupload = 1.3.3
org.apache.httpcomponents/httpclient = 4.5.3
org.apache.httpcomponents/httpmime = 4.5.3