We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
changelogBumpFreshmarkGitAdd
1 parent d634590 commit 41c37bfCopy full SHA for 41c37bf
README.md
@@ -78,6 +78,8 @@
78
79
# Changelog
80
## [Unreleased]
81
+### Fixed
82
+- `changelogBumpFreshmarkGitAdd` no longer triggers a "deprecated in Gradle 9" warning.
83
84
## [9.0.4] - 2025-07-08
85
### Changed
src/main/resources/spotless/freshmark.gradle
@@ -55,7 +55,7 @@ if (changelogExt != null) {
55
dependsOn(changelogBumpFreshmark)
56
// do the git add
57
doLast {
58
- exec { commandLine 'git', 'add' , '*.md' }
+ services.get(ExecOperations).exec { commandLine 'git', 'add' , '*.md' }
59
}
60
61
tasks.named('changelogPush').configure {
0 commit comments