Bump PIT to version 1.19.3
This commit is contained in:
parent
c0231964d3
commit
9795548cf9
4 changed files with 7 additions and 8 deletions
9
.github/workflows/bld.yml
vendored
9
.github/workflows/bld.yml
vendored
|
@ -1,14 +1,13 @@
|
|||
name: bld-ci
|
||||
|
||||
on: [ push, pull_request, workflow_dispatch ]
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build-bld-project:
|
||||
strategy:
|
||||
matrix:
|
||||
java-version: [ 17, 21, 24 ]
|
||||
kotlin-version: [ 1.9.25, 2.0.21, 2.1.20 ]
|
||||
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
||||
java-version: [17, 21, 24]
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
|
@ -36,4 +35,4 @@ jobs:
|
|||
run: ./bld download
|
||||
|
||||
- name: Run tests
|
||||
run: ./bld compile test
|
||||
run: ./bld compile test
|
||||
|
|
|
@ -48,7 +48,7 @@ Don't forget to add the Pitest `test` dependencies to your build file, as they a
|
|||
```java
|
||||
repositories = List.of(MAVEN_CENTRAL);
|
||||
scope(test)
|
||||
.include(dependency("org.pitest", "pitest", version(1, 19, 2)))
|
||||
.include(dependency("org.pitest", "pitest", version(1, 19, 3)))
|
||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 19, 2)))
|
||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 2)))
|
||||
.include(dependency("org.pitest", "pitest-testng-plugin", version(1, 0, 0)));
|
||||
|
|
|
@ -29,7 +29,7 @@ public class ExamplesBuild extends Project {
|
|||
|
||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
|
||||
var pitest = version(1, 19, 2);
|
||||
var pitest = version(1, 19, 3);
|
||||
scope(test)
|
||||
.include(dependency("org.pitest", "pitest", pitest))
|
||||
.include(dependency("org.pitest", "pitest-command-line", pitest))
|
||||
|
|
|
@ -50,7 +50,7 @@ public class PitestOperationBuild extends Project {
|
|||
|
||||
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES, RIFE2_SNAPSHOTS);
|
||||
|
||||
var pitest = version(1, 19, 2);
|
||||
var pitest = version(1, 19, 3);
|
||||
scope(compile)
|
||||
.include(dependency("com.uwyn.rife2", "bld", version(2, 2, 1)));
|
||||
scope(test)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue