File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
src/main/scala/io/sdkman/changelogs Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments