Skip to content

Commit 1004a34

Browse files
author
Oliver Weiler
authored
chore: Remove unsupported versions (#702)
1 parent f3bc785 commit 1004a34

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,18 @@ class JExtractMigrations {
5858
websiteUrl = "https://jdk.java.net/jextract/"
5959
).insert()
6060
}
61+
62+
@ChangeSet(
63+
order = "004",
64+
id = "004_remove_unsupported_versions",
65+
author = "helpermethod"
66+
)
67+
def migration004(implicit db: MongoDatabase): Unit = {
68+
List("21-jextract+1-2", "20-jextract+1-2", "19-jextract+2-3")
69+
.foreach { version =>
70+
List(Linux64, MacARM64, MacOSX, Windows).foreach { platform =>
71+
removeVersion("jextract", version, platform)
72+
}
73+
}
74+
}
6175
}

0 commit comments

Comments
 (0)