Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump Spotless to allow building in Java 21 #292

Merged
merged 2 commits into from
Sep 20, 2024
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
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id("java")
id("idea")
id("com.github.vlsi.gradle-extensions") version "1.74"
id("com.diffplug.spotless") version "6.11.0"
id("com.diffplug.spotless") version "6.19.0"
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
id("org.cyclonedx.bom") version "1.8.2"
}
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("idea")
id("antlr")
id("com.google.protobuf") version "0.9.4"
id("com.diffplug.spotless") version "6.11.0"
id("com.diffplug.spotless") version "6.19.0"
id("com.github.johnrengelman.shadow") version "8.1.1"
signing
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public void roundtrip(boolean n) {
private ProtoTypeConverter protoTypeConverter =
new ProtoTypeConverter(
lookup, ImmutableSimpleExtension.ExtensionCollection.builder().build());

/*
* Test a type pojo -> proto -> pojo roundtrip.
*
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ guava.version=32.1.3-jre
immutables.version=2.10.1
jackson.version=2.16.1
junit.version=5.8.1
protobuf.version=3.25.3
protobuf.version=3.25.5
slf4j.version=2.0.13
sparkbundle.version=3.4
spark.version=3.4.2
Expand Down
2 changes: 1 addition & 1 deletion isthmus-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("java")
id("idea")
id("com.palantir.graal") version "0.10.0"
id("com.diffplug.spotless") version "6.11.0"
id("com.diffplug.spotless") version "6.19.0"
}

java {
Expand Down
2 changes: 1 addition & 1 deletion isthmus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
`maven-publish`
id("java")
id("idea")
id("com.diffplug.spotless") version "6.11.0"
id("com.diffplug.spotless") version "6.19.0"
id("com.github.johnrengelman.shadow") version "8.1.1"
signing
}
Expand Down
2 changes: 1 addition & 1 deletion spark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("java")
id("scala")
id("idea")
id("com.diffplug.spotless") version "6.11.0"
id("com.diffplug.spotless") version "6.19.0"
signing
}

Expand Down
Loading