java - After upgrading from Spring Boot 1.1.5 to 1.1.6, gradle build fails with "Duplicate library commons-io-1.3.2.jar" in the :bootRepackage task -
i upgraded spring boot 1.1.5 1.1.6, , after that, (multi-project) build fails with:
failure: build failed exception. * went wrong: execution failed task ':admin:bootrepackage'. > duplicate library commons-io-1.3.2.jar
all other tasks seem have been successful (compilejava, compilegroovy, processresources, classes, jar, , distjar). have 1 explicit dependency on commons i/o library in build.gradle file:
compile group: 'org.apache.commons', name: 'commons-io', version: '1.3.2'
i'm using gradle 2.1, trying build 2.0 makes no difference. ran gradle dependencies didn't reveal particularly interesting. has else seen since upgrading? reverting 1.1.5 solves issue, i'm guessing it's related new dependency in spring boot jar(s) 1.1.6. hints resolution appreciated.
it sounds you've found bug caused fix this issue. can please open issue details of dependencies can track down?
Comments
Post a Comment