Skip to content

Commit

Permalink
Go back a bit to support all versions of CI:
Browse files Browse the repository at this point in the history
From 6.13.0 to 6.14.0, Spotless casually dropped Java 8 support:
https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md#6140---2023-01-26

What is a major change, if inability to use is not 🙄?
  • Loading branch information
TWiStErRob committed Feb 16, 2023
1 parent bc20479 commit f43740d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ plugins {
`kotlin-dsl`
`maven-publish`
id("com.gradle.plugin-publish") version "0.21.0"
id("com.diffplug.spotless") version "6.15.0"
// From 6.14.0 onwards Spotless requires Gradle to be on Java 11,
// but we still use Java 8 in .github/workflows/java-versions.yml.
id("com.diffplug.spotless") version "6.13.0"
id("com.github.johnrengelman.shadow") version "6.1.0"
id("org.jetbrains.gradle.plugin.idea-ext")
id("com.github.ben-manes.versions") version "0.39.0"
Expand Down

0 comments on commit f43740d

Please sign in to comment.