Skip to content

Commit

Permalink
improvement(jib): upgrade Maven Daemon version to 0.9.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 0e822b3)
  • Loading branch information
vvagaytsev committed Jun 21, 2023
1 parent ade1e43 commit 45f501b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions plugins/jib/mavend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,29 @@ import execa from "execa"

const buildLock = new AsyncLock()

const mvndVersion = "0.8.2"
const mvndVersion = "0.9.0"

const mvndSpec = {
description: "The Maven Daemon CLI.",
baseUrl: `https://github.com/apache/maven-mvnd/releases/download/${mvndVersion}/`,
linux: {
filename: `maven-mvnd-${mvndVersion}-linux-amd64.tar.gz`,
sha256: "5bcd4c3e45b767d562aa8d81583461abeb4fd6626ea1b8a1d961f34ef472f115",
sha256: "64acc68f2a3e25a0662eb62bf87cf2641706245505572ca1d20f933c7190f148",
targetPath: `maven-mvnd-${mvndVersion}-linux-amd64/bin/mvnd`,
},
darwin_aarch64: {
filename: `maven-mvnd-${mvndVersion}-darwin-aarch64.tar.gz`,
sha256: "b3fab0126188072ea80784c4bcc726bf398e0115ed37f3e243e14c84a2fe7e45",
sha256: "bca67a44cc3716a7da46926acff41b3864d62e5da6982b9e998eca42d2f9bfac",
targetPath: `maven-mvnd-${mvndVersion}-darwin-aarch64/bin/mvnd`,
},
darwin_amd64: {
filename: `maven-mvnd-${mvndVersion}-darwin-amd64.tar.gz`,
sha256: "889278f2e2a88450dcb074558a136fe06f9874db9b8d224674a5163a92ef2b69",
sha256: "b94fb24d92cd971b6368df14f44bf77b5614a422dfe9f6f115b32b11860c1d6b",
targetPath: `maven-mvnd-${mvndVersion}-darwin-amd64/bin/mvnd`,
},
windows: {
filename: `maven-mvnd-${mvndVersion}-windows-amd64.zip`,
sha256: "bfe6115b643ecb54b52a46df9e5b790035e54e67e21c10f964c7d58f633b7f22",
sha256: "7ddf8204f39ba72e55618cac31cae2ac917ea4f9b74ee3bc808bf5d210139420",
targetPath: `maven-mvnd-${mvndVersion}-windows-amd64/bin/mvnd.cmd`,
},
}
Expand Down

0 comments on commit 45f501b

Please sign in to comment.