Added GitHub workflows
This commit is contained in:
parent
74d701e63b
commit
82527ec795
3 changed files with 96 additions and 0 deletions
|
@ -27,6 +27,7 @@ import java.util.List;
|
|||
import static rife.bld.dependencies.Repository.*;
|
||||
import static rife.bld.dependencies.Scope.compile;
|
||||
import static rife.bld.dependencies.Scope.test;
|
||||
import static rife.bld.operations.JavadocOptions.DocLinkOption.NO_MISSING;
|
||||
|
||||
public class SpringBootBuild extends Project {
|
||||
public SpringBootBuild() {
|
||||
|
@ -46,6 +47,12 @@ public class SpringBootBuild extends Project {
|
|||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 0)))
|
||||
.include(dependency("org.assertj", "assertj-core", version(3, 24, 2)));
|
||||
|
||||
javadocOperation()
|
||||
.javadocOptions()
|
||||
.docLint(NO_MISSING)
|
||||
.link("https://rife2.github.io/bld/")
|
||||
.link("https://rife2.github.io/rife2/");
|
||||
|
||||
publishOperation()
|
||||
.repository(version.isSnapshot() ? RIFE2_SNAPSHOTS : RIFE2_RELEASES)
|
||||
.info()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue