spring-boot/spring-boot-tools
Dave Syer 77bac876ce Add support for Spring Loaded in Maven and Gradle
Requires Loaded 1.1.5 (or better).

For Maven you can just add springloaded to the dependencies of the
spring-boot plugin (and also set MAVEN_OPTS=-noverify).

For Gradle add springloaded to the build dependencies (-noverify
can be added by the plugin).

In both cases there is also support for adding an arbitrary java agent
via configuration. Samples are provided in
spring-boot-sample-[simple,web-ui].

The ApplicationPlugin is only added if there is no JavaExec task
already present, and additionally it computes its own man class if
none is provided. So "gradle run" and "gradle bootRun" look
superficially similar, but "bootRun" has extra options, including
the agent and Loaded support.

Fixes gh-251, gh-183
2014-02-18 10:05:28 +00:00
..
spring-boot-dependency-tools Next development version 2014-02-13 13:19:12 -08:00
spring-boot-gradle-plugin Add support for Spring Loaded in Maven and Gradle 2014-02-18 10:05:28 +00:00
spring-boot-loader Next development version 2014-02-13 13:19:12 -08:00
spring-boot-loader-tools Add support for Spring Loaded in Maven and Gradle 2014-02-18 10:05:28 +00:00
spring-boot-maven-plugin Add support for Spring Loaded in Maven and Gradle 2014-02-18 10:05:28 +00:00
pom.xml Next development version 2014-02-13 13:19:12 -08:00
README.md Documentation updates 2013-08-09 15:34:04 -07:00

Spring Boot - Tools

Spring Boot Tools provides a logical grouping for our various build system plugins, and the modules that support them. We provide a spring-boot-maven-plugin and spring-boot-gradle-plugin for Maven and Gradle respectively.

If you are interested in how we support executable archives, take a look at the spring-boot-loader module. If you need to create executable archives from a different build system, spring-boot-loader-tools may help.