Skip to content

Commit

Permalink
Updated copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jan 19, 2024
1 parent 5007978 commit ffaef86
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .idea/copyright/Apache_License.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/bld/java/rife/bld/extension/PitestOperationBuild.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 the original author or authors.
* Copyright 2023-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -35,14 +35,14 @@ public class PitestOperationBuild extends Project {
public PitestOperationBuild() {
pkg = "rife.bld.extension";
name = "PitestExtension";
version = version(0, 9, 1);
version = version(0, 9, 2, "SNAPSHOT");

javaRelease = 17;
downloadSources = true;
autoDownloadPurge = true;
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);

var pitest = version(1, 15, 3);
var pitest = version(1, 15, 4);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 5)));
scope(test)
Expand All @@ -51,7 +51,7 @@ public PitestOperationBuild() {
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)))
.include(dependency("org.assertj", "assertj-core", version(3, 24, 2)));
.include(dependency("org.assertj", "assertj-core", version(3, 25, 1)));

javadocOperation()
.javadocOptions()
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/rife/bld/extension/PitestOperation.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 the original author or authors.
* Copyright 2023-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -878,4 +878,4 @@ public PitestOperation verbose(boolean isVerbose) {
}
return this;
}
}
}
6 changes: 3 additions & 3 deletions src/test/java/rife/bld/extension/PitestOperationTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 the original author or authors.
* Copyright 2023-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -158,7 +158,7 @@ void excludedTests() {

@Test
void execute() throws IOException {
var tmpDir = Files.createTempDirectory("bld-pitest");
var tmpDir = Files.createTempDirectory("bld-pitest-");
tmpDir.toFile().deleteOnExit();
var op = new PitestOperation().
fromProject(new WebProject())
Expand Down Expand Up @@ -491,4 +491,4 @@ void verbose() {
.verbose(false);
assertThat(op.options.get("--verbose")).isEqualTo(FALSE);
}
}
}

0 comments on commit ffaef86

Please sign in to comment.