Use DefaultPartHttpMessageReader with Framework 5.3

Closes gh-703
This commit is contained in:
Andy Wilkinson
2020-11-13 14:34:28 +00:00
parent 562fd9f1c4
commit 0d8eb26ce0
2 changed files with 32 additions and 5 deletions

View File

@@ -21,4 +21,10 @@ matrixTest {
group = 'org.springframework'
versions = ['5.1.+', '5.2.+', '5.3.+']
}
}
}
project.afterEvaluate {
configurations.getByName('testRuntimeClasspath_org.springframework_5.3.+') {
exclude group: 'org.synchronoss.cloud', module: 'nio-multipart-parser'
}
}