Skip to content

Commit

Permalink
Docs: Added section for mill-spring-boot plugin (#2666)
Browse files Browse the repository at this point in the history
Pull request: #2666
  • Loading branch information
lefou authored Jul 20, 2023
1 parent 95c2ea2 commit 74a1a0a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/modules/ROOT/pages/Thirdparty_Plugins.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,31 @@ As Mill is a tool often used from the CLI (Command line interface), you may be a
* <<_fish_completion>>
* <<_zsh_completion>>


== Spring Boot

Support packaging Spring Boot Applications with Mill.

Project home: https://github.com/lefou/mill-spring-boot

[source,scala,subs="attributes,verbatim"]
----
import mill._
import mill.scalalib._
import de.tobiasroeser.mill.spring.boot.SpringBootModule
object app extends MavenModule with SpringBootModule {
override def springBootToolsVersion = "2.7.13"
}
----

[source,shell]
----
# Package as executable Spring-Boot Application
$ mill app.springBootAssembly
----


== VCS Version

Mill plugin to derive a version from (last) git tag and edit state. It may support other VCS as well.
Expand Down

0 comments on commit 74a1a0a

Please sign in to comment.