Skip to content

Commit 0786a68

Browse files
committed
Tested with newer Spring Boot versions
1 parent 0645b94 commit 0786a68

File tree

2 files changed

+35
-8
lines changed

2 files changed

+35
-8
lines changed

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ This project provides an extension to support testing of Spring and Spring-Boot
1818
- [Spring JUnit Jupiter Testing Annotations](#spring-junit-jupiter-testing-annotations)
1919
- [Spring Boot](#spring-boot)
2020
- [Supported Spring / Spring Boot Versions](#supported-spring--spring-boot-versions)
21+
- [jqwik-spring 0.11.0](#jqwik-spring-0110)
2122
- [jqwik-spring 0.10.0](#jqwik-spring-0100)
2223
- [Shortcomings](#shortcomings)
2324
- [Nested/Grouped Tests in Old Spring (Boot) Versions](#nestedgrouped-tests-in-old-spring-boot-versions)
2425
- [Release Notes](#release-notes)
26+
- [0.11.0](#0110)
2527
- [0.10.0](#0100)
2628
- [0.9.0](#090)
2729
- [0.8.2](#082)
@@ -215,6 +217,21 @@ testing features, e.g. [test auto-configuration annotations](https://docs.spring
215217

216218
## Supported Spring / Spring Boot Versions
217219

220+
### jqwik-spring 0.11.0
221+
222+
Supports Java 17 and above.
223+
224+
#### Spring Framework
225+
226+
- `5.2.15-RELEASE`
227+
- `5.3.31`
228+
229+
#### Spring Boot
230+
231+
- `2.6.15`
232+
- `2.7.17`
233+
234+
218235
### jqwik-spring 0.10.0
219236

220237
Supports Java 8 and above.
@@ -245,9 +262,19 @@ and cannot be fixed by this library.
245262

246263
## Release Notes
247264

265+
### 0.11.0
266+
267+
__First version supporting Spring 3.x.__
268+
269+
__Requires Java 17 or above.__
270+
271+
- Tested with Spring 5.3.31, 6.0.14, 6.1.0
272+
- Tested with Spring Boot 2.6.15, 2.7.17, 3.0.12, 3.1.5
273+
274+
248275
### 0.10.0
249276

250-
__Last version supporting Java 8__
277+
__Last version supporting Java 8 - 16.__
251278

252279
- Upgrade to jqwik 1.8.2
253280
- Upgrade to JUnitPlatform 5.10.1

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ ext {
1515
junitPlatformVersion = '1.10.1'
1616
junitJupiterVersion = '5.10.1'
1717
// springVersion = '5.2.15.RELEASE'
18-
springVersion = '5.3.31'
18+
// springVersion = '5.3.31'
1919
// springVersion = '6.0.14'
20-
// springVersion = '6.1.0'
20+
springVersion = '6.1.0'
2121
// springBootVersion = '2.6.15'
22-
springBootVersion = '2.7.17'
22+
// springBootVersion = '2.7.17'
2323
// springBootVersion = '3.0.12'
24-
// springBootVersion = '3.1.5'
24+
springBootVersion = '3.1.5'
2525
assertJVersion = '3.24.2'
2626
mockitoVersion = '4.11.0'
2727
jqwikVersion = '1.8.2'
28-
jqwikSpringVersion = '0.10.0'
28+
jqwikSpringVersion = '0.11.0'
2929
isSnapshotRelease = isSnapshotRelease(jqwikSpringVersion)
3030
}
3131

@@ -48,8 +48,8 @@ jar {
4848
java {
4949
withJavadocJar()
5050
withSourcesJar()
51-
sourceCompatibility = JavaVersion.VERSION_1_8
52-
targetCompatibility = JavaVersion.VERSION_1_8
51+
sourceCompatibility = JavaVersion.VERSION_17
52+
targetCompatibility = JavaVersion.VERSION_17
5353
}
5454

5555
compileTestJava {

0 commit comments

Comments
 (0)