spring-boot-thin-launcher
spring-boot-thin-launcher copied to clipboard
Tools for building "thin" executable jars, with a focus on, but not exclusively for, Spring Boot
Hi, I'm trying to deploy a very simple Spring Boot demo app with all dependencies included in the "thin root" to Cloud Foundry. This is my process: ``` # build...
"you can add additional individual dependencies on the command line using thin.properties.dependencies.* (for instance)." This works: ``` --thin.libs=$thin_root/repository/com/example/1.0.0-SNAPSHOT/example-1.0.0-SNAPSHOT.jar ``` This doesn't work ``` -Dthin.properties.dependencies=com.example:example:1.0.0-SNAPSHOT ``` Neither does this: ``` --thin.properties.dependencies=com.example:example:1.0.0-SNAPSHOT...