Skip to content

Commit

Permalink
feat: Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Apr 25, 2023
1 parent 8c25130 commit be29ef5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:11-jre
FROM eclipse-temurin:17-jre

ARG KESTRA_PLUGINS=""
ARG APT_PACKAGES=""
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ idea {
* Main
**********************************************************************************************************************/
mainClassName = "io.kestra.cli.App"
sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17

dependencies {
implementation project(":cli")
Expand All @@ -50,8 +50,8 @@ dependencies {
allprojects {
group "io.kestra"

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17

repositories {
mavenCentral()
Expand Down Expand Up @@ -137,8 +137,8 @@ subprojects {
apply plugin: "com.adarshr.test-logger"
apply plugin: "org.gradle.test-retry"

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17

dependencies {
// lombok
Expand Down

0 comments on commit be29ef5

Please sign in to comment.