File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
src/main/scala/io/sdkman/changelogs/java Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -616,6 +616,7 @@ class OpenJdkMigrations {
616616 removeVersion(" java" , " 14.ea.36-open" , _)
617617 )
618618 }
619+
619620 @ ChangeSet (
620621 order = " 033" ,
621622 id = " 033-retry-add_openjdk_java_13.0.2" ,
@@ -1330,4 +1331,40 @@ class OpenJdkMigrations {
13301331 removeVersion(" java" , " 16.ea.2-open" , _)
13311332 )
13321333 }
1334+
1335+ @ ChangeSet (
1336+ order = " 054" ,
1337+ id = " 054-add_openjdk_java_15-ea-30" ,
1338+ author = " eddumelendez"
1339+ )
1340+ def migrate054 (implicit db : MongoDatabase ): Unit = {
1341+ List (
1342+ Version (
1343+ " java" ,
1344+ " 15.ea.30-open" ,
1345+ " https://download.java.net/java/early_access/jdk15/30/GPL/openjdk-15-ea+30_linux-x64_bin.tar.gz" ,
1346+ Linux64 ,
1347+ Some (OpenJDK )
1348+ ),
1349+ Version (
1350+ " java" ,
1351+ " 15.ea.30-open" ,
1352+ " https://download.java.net/java/early_access/jdk15/30/GPL/openjdk-15-ea+30_osx-x64_bin.tar.gz" ,
1353+ MacOSX ,
1354+ Some (OpenJDK )
1355+ ),
1356+ Version (
1357+ " java" ,
1358+ " 15.ea.30-open" ,
1359+ " https://download.java.net/java/early_access/jdk15/30/GPL/openjdk-15-ea+30_windows-x64_bin.zip" ,
1360+ Windows ,
1361+ Some (OpenJDK )
1362+ )
1363+ ).validate()
1364+ .insert()
1365+ Seq (Linux64 , MacOSX , Windows ).foreach(
1366+ removeVersion(" java" , " 15.ea.29-open" , _)
1367+ )
1368+ }
1369+
13331370}
You can’t perform that action at this time.
0 commit comments