Skip to content

Commit b28af6a

Browse files
committed
chore: update to gradle 9.2.0
1 parent f99906f commit b28af6a

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
@@ -57,10 +57,10 @@ pub fn get_task_command_map() -> HashMap<String, String> {
5757
format!("{} cyclonedxDirectBom", gradle_command),
5858
);
5959
if let Ok(code) = std::fs::read_to_string("gradle/wrapper/gradle-wrapper.properties") {
60-
if !code.contains("gradle-9.0.0") {
60+
if !code.contains("gradle-9.2.0") {
6161
task_command_map.insert(
6262
"self-update".to_string(),
63-
format!("{} wrapper --gradle-version=9.0.0", gradle_command),
63+
format!("{} wrapper --gradle-version=9.2.0", gradle_command),
6464
);
6565
}
6666
}

0 commit comments

Comments
 (0)