File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
src/main/scala/io/sdkman/changelogs Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -269,4 +269,28 @@ class TomcatMigration {
269269 setCandidateDefault(" tomcat" , " 11.0.6" )
270270 }
271271
272+ @ ChangeSet (
273+ order = " 022" ,
274+ id = " 022-update_tomcat_versions" ,
275+ author = " stefanpenndorf"
276+ )
277+ def migration022 (implicit db : MongoDatabase ): Document = {
278+ List (
279+ " 9" -> " 9.0.105" ,
280+ " 10" -> " 10.1.41" ,
281+ " 11" -> " 11.0.7"
282+ ).map {
283+ case (series : String , version : String ) =>
284+ Version (
285+ candidate = " tomcat" ,
286+ version = version,
287+ url =
288+ s " https://archive.apache.org/dist/tomcat/tomcat- $series/v $version/bin/apache-tomcat- $version.zip "
289+ )
290+ }
291+ .validate()
292+ .insert()
293+ setCandidateDefault(" tomcat" , " 11.0.7" )
294+ }
295+
272296}
You can’t perform that action at this time.
0 commit comments