Skip to content

Commit

Permalink
Java17 - sourceCompatibility , targetCompatibility (#342)
Browse files Browse the repository at this point in the history
* Java17 - sourceCompatibility , targetCompatibility
* gh-workflow  - test - JAVA 17,21 - remove 11

---------

Co-authored-by: Pitterling <[email protected]>
  • Loading branch information
Pitterling and Pitterling authored Jan 1, 2025
1 parent ed176ca commit 057ac3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
fail-fast: false
matrix:
java-version:
- 11
- 17
- 21
runs-on: ubuntu-latest
name: 'Test (JDK ${{ matrix.java-version }})'
steps:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ if (!project.hasProperty("release")) {
println("Building kSar $version")

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

application {
Expand Down

0 comments on commit 057ac3c

Please sign in to comment.