There seems to be a regression from spring-boot plugin 1.0.2.RELEASE to 1.1.3.RELEASE.
I have a project including a local jar file as follows:
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:' + springBootVersion
compile files("$rootDir/vendor/foo.jar")
}
When building with plugin 1.0.2.RELEASE, the jar is correctly embedded, and starting my server doesn't throw an error.
When building with plugin 1.1.3.RELEASE, the jar is not included, and starting my server through the built jar will throw a ClassNotFoundException when referring a class from foo.jar