Skip to content

Commit

Permalink
chore: upgrade Kestra and improve Gradle build
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Oct 29, 2024
1 parent 6c15489 commit 7f884ba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id "idea"
id 'jacoco'
id "com.adarshr.test-logger" version "4.0.0"
id "com.github.johnrengelman.shadow" version "8.1.1"
id "com.gradleup.shadow" version "8.3.3"
id 'ru.vyarus.java-lib' version '3.0.0'
id 'ru.vyarus.github-info' version '2.0.0'
id 'signing'
Expand All @@ -22,13 +22,17 @@ repositories {
}
}

sourceCompatibility = 21
targetCompatibility = 21
final targetJavaVersion = JavaVersion.VERSION_21

java {
sourceCompatibility = targetJavaVersion
targetCompatibility = targetJavaVersion
}

group "io.kestra.plugin"
description 'Plugin template for Kestra'

tasks.withType(JavaCompile) {
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.18.0-SNAPSHOT
kestraVersion=[0.18,)
version=0.19.0-SNAPSHOT
kestraVersion=[0.19,)

0 comments on commit 7f884ba

Please sign in to comment.