Skip to content

Commit

Permalink
chore: updated build
Browse files Browse the repository at this point in the history
  • Loading branch information
ngyewch committed Jul 24, 2024
1 parent 71406c9 commit 04a7547
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion java/twirp-helidon-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ plugins {
}

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

withJavadocJar()
withSourcesJar()
}
Expand Down Expand Up @@ -64,7 +67,7 @@ signing {

spotless {
java {
googleJavaFormat("1.18.1").reflowLongStrings().skipJavadocFormatting()
googleJavaFormat("1.22.0").reflowLongStrings().skipJavadocFormatting()
formatAnnotations()
targetExclude("build/**")
}
Expand Down
5 changes: 4 additions & 1 deletion java/twirp-helidon-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ plugins {
}

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

withJavadocJar()
withSourcesJar()
}
Expand Down Expand Up @@ -71,7 +74,7 @@ signing {

spotless {
java {
googleJavaFormat("1.18.1").reflowLongStrings().skipJavadocFormatting()
googleJavaFormat("1.22.0").reflowLongStrings().skipJavadocFormatting()
formatAnnotations()
targetExclude("build/**")
}
Expand Down

0 comments on commit 04a7547

Please sign in to comment.