Bumped bld to 1.8.0

This commit is contained in:
Erik C. Thauvin 2024-01-31 16:02:46 -08:00
parent ac5cb0ef07
commit befda9c35e
10 changed files with 16 additions and 13 deletions

View file

@ -5,6 +5,8 @@ import rife.bld.extension.CompileKotlinOperation;
import rife.bld.operations.RunOperation;
import rife.bld.BaseProject;
import java.util.List;
import static rife.bld.dependencies.Repository.*;
import static rife.bld.dependencies.Scope.compile;
@ -23,7 +25,7 @@ public class ExampleBuild extends BaseProject {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile)
.include(dependency("net.thauvin.erik:akismet-kotlin:1.0.0"))
.include(dependency("net.thauvin.erik:akismet-kotlin:1.0.1-SNAPSHOT"))
.include(dependency("jakarta.servlet:jakarta.servlet-api:6.0.0"));
}