mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-18 17:48:14 +08:00

Previously, all dependencies were considered equal and enough to compile and start the simple auto-generated boot application. There are some corner cases such as the JDBC drivers and the new Ratpack integration. This commit adds an extra flag on a dependency that determines if it is a starter or not (the default is true). When no starter dependency has been selected for the project, the root starter (`spring-boot-starter`) is automatically added. Closes gh-159