mirror of
https://gitee.com/jmix/cuba.git
synced 2024-11-30 10:17:43 +08:00
PL-9485 Spring CommonsMultipartResolver requires commons-fileupload
This commit is contained in:
parent
105823badb
commit
f42baa8773
@ -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'])
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user