bld Extension to help create Spring Boot web applications https://github.com/rife2/bld-spring-boot
Find a file
2023-10-30 13:29:46 -07:00
.github/workflows Download examples dependencies needed for testing 2023-10-30 13:19:08 -07:00
.idea Added PMD config 2023-10-27 03:12:24 -07:00
.vscode Initial commit 2023-10-25 20:36:49 -07:00
config Added PMD config 2023-10-27 03:12:24 -07:00
examples Revert "Added examples compile and standalone directories for testing" 2023-10-30 13:09:19 -07:00
lib/bld Added PMD config 2023-10-27 03:12:24 -07:00
src Fixed publish repository locations 2023-10-30 13:29:46 -07:00
.gitignore Fixed publish repository locations 2023-10-30 13:29:46 -07:00
bld Initial commit 2023-10-25 20:36:49 -07:00
bld.bat Initial commit 2023-10-25 20:36:49 -07:00
LICENSE.txt Initial commit 2023-10-25 20:36:49 -07:00
README.md Added README 2023-10-30 12:57:06 -07:00

bld Extension for Spring Boot

License Java bld Release Snapshot GitHub CI

To install, please refer to the extensions documentation.

To create a Spring Boot executable Java Archive (JAR) from the current project:

@@BuildCommand(summary = "Creates an executable JAR for the project")
public void bootjar() throws Exception {
    new BootJarOperation()
            .fromProject(this)
            .execute();
}
./bld compile bootjar

To create a Spring Boot executable Web Archive (WAR) from the current project:

@BuildCommand(summary = "Create an executable WAR for the project")
public void bootwar() throws Exception {
    new BootWarOperation()
            .fromProject(this)
            .execute();
}
./bld compile bootwar

Please check the BootJarOperation documentation or BootWarOperation documentation for all available configuration options.