Bump PIT to version 1.19.3

This commit is contained in:
Erik C. Thauvin 2025-05-15 21:17:52 -07:00
parent c0231964d3
commit 9795548cf9
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 7 additions and 8 deletions

View file

@ -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

View file

@ -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)));

View file

@ -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))

View file

@ -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)