Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 17 ]
java: [ 17, 19 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 11
java-version: 17
- name: Check version not snapshot
run: |
PROJECT_VERSION=$(./gradlew -q printVersion | tail -n 1)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 11
java-version: 17
- name: Check version is snapshot
run: |
PROJECT_VERSION=$(./gradlew -q printVersion | tail -n 1)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ Opinionated Spring Boot starter that handles some Spring and AWS common exceptio

## Requirements

This starter requires Java 11 and is compatible up to and including Java 17.
This starter requires Java 17 and is compatible up to and including Java 19.

It also requires a Spring Boot **MVC** web application.

### Spring Boot compatibility

| Spring Boot | starter-errors | Kotlin |
|:-----------:|:--------------:|:------:|
| 3.0 | 9.x | 1.8 |
| 2.7 | 8.x | 1.7 |
| 2.6 | 7.x | 1.6 |
| 2.5 | 5.x | 1.5 |
Expand Down