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 @@ -450,4 +450,39 @@ class OpenJdkMigrations {
450450 )
451451 }
452452
453+ @ ChangeSet (
454+ order = " 016" ,
455+ id = " 016-add_openjdk_java_14-ea-33" ,
456+ author = " eddumelendez"
457+ )
458+ def migrate016 (implicit db : MongoDatabase ): Unit = {
459+ List (
460+ Version (
461+ " java" ,
462+ " 14.ea.33-open" ,
463+ " https://download.java.net/java/early_access/jdk14/33/GPL/openjdk-14-ea+33_linux-x64_bin.tar.gz" ,
464+ Linux64 ,
465+ Some (OpenJDK )
466+ ),
467+ Version (
468+ " java" ,
469+ " 14.ea.33-open" ,
470+ " https://download.java.net/java/early_access/jdk14/33/GPL/openjdk-14-ea+33_osx-x64_bin.tar.gz" ,
471+ MacOSX ,
472+ Some (OpenJDK )
473+ ),
474+ Version (
475+ " java" ,
476+ " 14.ea.33-open" ,
477+ " https://download.java.net/java/early_access/jdk14/33/GPL/openjdk-14-ea+33_windows-x64_bin.zip" ,
478+ Windows ,
479+ Some (OpenJDK )
480+ )
481+ ).validate()
482+ .insert()
483+ Seq (Linux64 , MacOSX , Windows ).foreach(
484+ removeVersion(" java" , " 14.ea.32-open" , _)
485+ )
486+ }
487+
453488}
You can’t perform that action at this time.
0 commit comments