Skip to content

Commit 0a0df92

Browse files
committed
chore: update to gradle 8.14.3
1 parent 933d3e1 commit 0a0df92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/managers/gradle.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ pub fn get_task_command_map() -> HashMap<String, String> {
4949
format!("{} dependencyUpdates", gradle_command),
5050
);
5151
if let Ok(code) = std::fs::read_to_string("gradle/wrapper/gradle-wrapper.properties") {
52-
if !code.contains("gradle-8.14") {
52+
if !code.contains("gradle-8.14.3") {
5353
task_command_map.insert(
5454
"self-update".to_string(),
55-
format!("{} wrapper --gradle-version=8.14", gradle_command),
55+
format!("{} wrapper --gradle-version=8.14.3", gradle_command),
5656
);
5757
}
5858
}

0 commit comments

Comments
 (0)