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 @@ -745,4 +745,39 @@ class OpenJdkMigrations {
745745 removeVersion(" java" , " 15.ea.8-open" , _)
746746 )
747747 }
748+
749+ @ ChangeSet (
750+ order = " 025" ,
751+ id = " 025-add_openjdk_java_14-ea-36" ,
752+ author = " eddumelendez"
753+ )
754+ def migrate025 (implicit db : MongoDatabase ): Unit = {
755+ List (
756+ Version (
757+ " java" ,
758+ " 14.ea.36-open" ,
759+ " https://download.java.net/java/GA/jdk14/076bab302c7b4508975440c56f6cc26a/36/GPL/openjdk-14_linux-x64_bin.tar.gz" ,
760+ Linux64 ,
761+ Some (OpenJDK )
762+ ),
763+ Version (
764+ " java" ,
765+ " 14.ea.36-open" ,
766+ " https://download.java.net/java/GA/jdk14/076bab302c7b4508975440c56f6cc26a/36/GPL/openjdk-14_osx-x64_bin.tar.gz" ,
767+ MacOSX ,
768+ Some (OpenJDK )
769+ ),
770+ Version (
771+ " java" ,
772+ " 14.ea.36-open" ,
773+ " https://download.java.net/java/GA/jdk14/076bab302c7b4508975440c56f6cc26a/36/GPL/openjdk-14_windows-x64_bin.zip" ,
774+ Windows ,
775+ Some (OpenJDK )
776+ )
777+ ).validate()
778+ .insert()
779+ Seq (Linux64 , MacOSX , Windows ).foreach(
780+ removeVersion(" java" , " 14.ea.35-open" , _)
781+ )
782+ }
748783}
You can’t perform that action at this time.
0 commit comments