Bumped bld to version 1.9.1

This commit is contained in:
Erik C. Thauvin 2024-05-09 21:05:40 -07:00
parent d7d9cdf98c
commit e5738ec79d
Signed by: erik
GPG key ID: 776702A6A2DA330E
11 changed files with 11 additions and 12 deletions

View file

@ -35,7 +35,7 @@ public class CheckstyleOperationBuild extends Project {
public CheckstyleOperationBuild() {
pkg = "rife.bld.extension";
name = "CheckstyleOperation";
version = version(1, 0, 0);
version = version(1, 0, 1, "SNAPSHOT");
javaRelease = 17;
downloadSources = true;
@ -43,7 +43,7 @@ public class CheckstyleOperationBuild extends Project {
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 0)));
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 1)));
scope(test)
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 16, 0)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))

View file

@ -76,7 +76,6 @@ class CheckstyleOperationTest {
assertThat(op.executeConstructProcessCommandList()).as("as list").contains(x + FOO, x + BAR);
}
@Test
void execute() throws IOException, ExitStatusException, InterruptedException {
var tmpFile = File.createTempFile("checkstyle-google", ".txt");