Skip to content
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
6 changes: 3 additions & 3 deletions gradle/changelog.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ spotlessChangelog {
if (project == rootProject) {
gradle.taskGraph.whenReady { taskGraph ->
def changelogPushTasks = taskGraph.allTasks.stream()
.filter { t -> t.name == 'changelogPush' }
.map { t -> t.path }
.toList()
.filter { t -> t.name == 'changelogPush' }
.map { t -> t.path }
.toList()
if (changelogPushTasks.size() > 1) {
// make sure only one changelog gets published per tag/commit
throw new IllegalArgumentException("Run changelogPush one at a time:\n" + changelogPushTasks.join('\n'))
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ errorprone-core = "com.google.errorprone:error_prone_core:2.42.0"

[plugins]
test-logger = "com.adarshr.test-logger:4.0.0"
spotless = "com.diffplug.spotless:8.3.0"
spotless = "com.diffplug.spotless:8.7.0"
spotless-changelog = "com.diffplug.spotless-changelog:3.1.2"
spotbugs = "com.github.spotbugs:6.4.8"
plugin-publish = "com.gradle.plugin-publish:2.1.1"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pluginManagement {
}

plugins {
id 'com.diffplug.spotless' version '8.3.0' apply false
id 'com.diffplug.spotless' version '8.7.0' apply false
id 'com.github.spotbugs' version '6.4.8' apply false // https://github.com/spotbugs/spotbugs-gradle-plugin/releases
id 'com.gradle.develocity' version '4.4.2'
}
Expand Down
6 changes: 3 additions & 3 deletions testlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ apply from: rootProject.file('gradle/special-tests.gradle')
tasks.withType(Test).configureEach {
// for Antlr4FormatterStepTest, KtfmtStepTest, and KtLintStepTest
jvmArgs(
'--add-opens=java.base/java.lang=ALL-UNNAMED',
'--add-opens=java.base/java.util=ALL-UNNAMED',
)
'--add-opens=java.base/java.lang=ALL-UNNAMED',
'--add-opens=java.base/java.util=ALL-UNNAMED',
)
}

javadoc {
Expand Down
Loading