spring-boot-thin-launcher
spring-boot-thin-launcher copied to clipboard
Adding additional dependncies using ` thin.properties.dependencies.` doesn't work
"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
I guess I need
--thin.properties.dependencies.example=com.example:example:1.0.0-SNAPSHOT
It would be nice if a warning was printed on unrecognized properties/switches