File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
src/main/scala/io/sdkman/changelogs/java Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -1367,4 +1367,39 @@ class OpenJdkMigrations {
13671367 )
13681368 }
13691369
1370+ @ ChangeSet (
1371+ order = " 055" ,
1372+ id = " 055-add_openjdk_java_16-ea-4" ,
1373+ author = " eddumelendez"
1374+ )
1375+ def migrate055 (implicit db : MongoDatabase ): Unit = {
1376+ List (
1377+ Version (
1378+ " java" ,
1379+ " 16.ea.4-open" ,
1380+ " https://download.java.net/java/early_access/jdk16/4/GPL/openjdk-16-ea+4_linux-x64_bin.tar.gz" ,
1381+ Linux64 ,
1382+ Some (OpenJDK )
1383+ ),
1384+ Version (
1385+ " java" ,
1386+ " 16.ea.4-open" ,
1387+ " https://download.java.net/java/early_access/jdk16/4/GPL/openjdk-16-ea+4_osx-x64_bin.tar.gz" ,
1388+ MacOSX ,
1389+ Some (OpenJDK )
1390+ ),
1391+ Version (
1392+ " java" ,
1393+ " 16.ea.4-open" ,
1394+ " https://download.java.net/java/early_access/jdk16/4/GPL/openjdk-16-ea+4_windows-x64_bin.zip" ,
1395+ Windows ,
1396+ Some (OpenJDK )
1397+ )
1398+ ).validate()
1399+ .insert()
1400+ Seq (Linux64 , MacOSX , Windows ).foreach(
1401+ removeVersion(" java" , " 16.ea.3-open" , _)
1402+ )
1403+ }
1404+
13701405}
You can’t perform that action at this time.
0 commit comments