|
1 | 1 | plugins { |
2 | 2 | id 'java-library' |
3 | 3 | // to unleash the lombok magic |
4 | | - id "io.freefair.lombok" version "8.11" |
| 4 | + id "io.freefair.lombok" version "8.12.2.1" |
5 | 5 | // to make our tests output more fancy |
6 | 6 | id 'com.adarshr.test-logger' version '4.0.0' |
7 | 7 | // to publish packages |
8 | 8 | id 'maven-publish' |
9 | 9 | // code linting |
10 | | - id "com.diffplug.spotless" version "7.0.1" |
| 10 | + id "com.diffplug.spotless" version "7.0.2" |
11 | 11 | // test coverage |
12 | 12 | id 'jacoco' |
13 | 13 | id 'com.github.kt3k.coveralls' version '2.12.2' |
@@ -108,14 +108,15 @@ dependencies { |
108 | 108 | implementation group: 'org.tinylog', name: 'tinylog-impl', version: tinyLogVersion |
109 | 109 |
|
110 | 110 | // JUnit test framework. |
111 | | - testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.11.4' |
| 111 | + testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.12.0' |
| 112 | + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' |
112 | 113 |
|
113 | 114 | // Mocking libraries |
114 | 115 | testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.15.2' |
115 | | - testImplementation group: 'org.wiremock', name: 'wiremock', version: '3.10.0' |
| 116 | + testImplementation group: 'org.wiremock', name: 'wiremock', version: '3.12.1' |
116 | 117 |
|
117 | 118 | // Wait test utility |
118 | | - testImplementation group: 'org.awaitility', name: 'awaitility', version: '4.2.2' |
| 119 | + testImplementation group: 'org.awaitility', name: 'awaitility', version: '4.3.0' |
119 | 120 |
|
120 | 121 | // Transitive dependencies constraints |
121 | 122 | constraints { |
|
0 commit comments