Skip to content

Commit

Permalink
Tested with newer Spring Boot versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Nov 23, 2023
1 parent 0645b94 commit 0786a68
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 8 deletions.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ This project provides an extension to support testing of Spring and Spring-Boot
- [Spring JUnit Jupiter Testing Annotations](#spring-junit-jupiter-testing-annotations)
- [Spring Boot](#spring-boot)
- [Supported Spring / Spring Boot Versions](#supported-spring--spring-boot-versions)
- [jqwik-spring 0.11.0](#jqwik-spring-0110)
- [jqwik-spring 0.10.0](#jqwik-spring-0100)
- [Shortcomings](#shortcomings)
- [Nested/Grouped Tests in Old Spring (Boot) Versions](#nestedgrouped-tests-in-old-spring-boot-versions)
- [Release Notes](#release-notes)
- [0.11.0](#0110)
- [0.10.0](#0100)
- [0.9.0](#090)
- [0.8.2](#082)
Expand Down Expand Up @@ -215,6 +217,21 @@ testing features, e.g. [test auto-configuration annotations](https://docs.spring

## Supported Spring / Spring Boot Versions

### jqwik-spring 0.11.0

Supports Java 17 and above.

#### Spring Framework

- `5.2.15-RELEASE`
- `5.3.31`

#### Spring Boot

- `2.6.15`
- `2.7.17`


### jqwik-spring 0.10.0

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

## Release Notes

### 0.11.0

__First version supporting Spring 3.x.__

__Requires Java 17 or above.__

- Tested with Spring 5.3.31, 6.0.14, 6.1.0
- Tested with Spring Boot 2.6.15, 2.7.17, 3.0.12, 3.1.5


### 0.10.0

__Last version supporting Java 8__
__Last version supporting Java 8 - 16.__

- Upgrade to jqwik 1.8.2
- Upgrade to JUnitPlatform 5.10.1
Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ ext {
junitPlatformVersion = '1.10.1'
junitJupiterVersion = '5.10.1'
// springVersion = '5.2.15.RELEASE'
springVersion = '5.3.31'
// springVersion = '5.3.31'
// springVersion = '6.0.14'
// springVersion = '6.1.0'
springVersion = '6.1.0'
// springBootVersion = '2.6.15'
springBootVersion = '2.7.17'
// springBootVersion = '2.7.17'
// springBootVersion = '3.0.12'
// springBootVersion = '3.1.5'
springBootVersion = '3.1.5'
assertJVersion = '3.24.2'
mockitoVersion = '4.11.0'
jqwikVersion = '1.8.2'
jqwikSpringVersion = '0.10.0'
jqwikSpringVersion = '0.11.0'
isSnapshotRelease = isSnapshotRelease(jqwikSpringVersion)
}

Expand All @@ -48,8 +48,8 @@ jar {
java {
withJavadocJar()
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

compileTestJava {
Expand Down

0 comments on commit 0786a68

Please sign in to comment.