Skip to content

Commit b1fcd9f

Browse files
committed
Add JMC 9.1.1-zulu
1 parent 6ccb9c8 commit b1fcd9f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/main/scala/io/sdkman/changelogs/JdkMissionControlMigrations.scala

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,30 @@ class JdkMissionControlMigrations {
4747
.validate()
4848
.insert()
4949

50+
@ChangeSet(
51+
order = "003",
52+
id = "003-add-zulu-9.1.1",
53+
author = "sciencesakura"
54+
)
55+
def migrate003(implicit db: MongoDatabase): Unit =
56+
Map(
57+
Linux64 -> "zmc9.1.1.35-ca-linux_x64.tar.gz",
58+
LinuxARM64 -> "zmc9.1.1.35-ca-linux_aarch64.tar.gz",
59+
MacOSX -> "zmc9.1.1.35-ca-macos_x64.tar.gz",
60+
MacARM64 -> "zmc9.1.1.35-ca-macos_aarch64.tar.gz",
61+
Windows -> "zmc9.1.1.35-ca-win_x64.zip"
62+
).map {
63+
case (platform, binary) =>
64+
Version(
65+
"jmc",
66+
"9.1.1-zulu",
67+
s"https://cdn.azul.com/zmc/bin/$binary",
68+
platform,
69+
Some(Zulu)
70+
)
71+
}
72+
.toList
73+
.validate()
74+
.insert()
75+
5076
}

0 commit comments

Comments
 (0)