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
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,17 @@ jobs:
matrix:
# We test Stripe SDK against Java LTS versions(8, 11, 17, 21) and currently supported non-LTS versions.
# https://www.oracle.com/java/technologies/java-se-support-roadmap.html
# https://endoflife.date/oracle-jdk
java-version:
# LTS versions
- "1.8"
- "11"
- "17"
- "21"
- "22"
- "23"
- "24"
- "25"
# non-LTS versions
# we should periodically add the latest non-LTS version here to test against
# as of 2025-09-29, the latest version of java (25) is LTS, so this section is empty. In March 2026, we'll add "26".

steps:
- uses: extractions/setup-just@v2
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ The official [Stripe][stripe] Java client library.

### Requirements

- Java 1.8 or later
We support LTS versions of the JDK. Currently, that's Java versions:

- 8 (1.8)
- 11
- 17
- 21
- 25

### Gradle users

Expand Down