We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206fa05 commit b1f1d69Copy full SHA for b1f1d69
src/main/scala/io/sdkman/changelogs/TomcatMigration.scala
@@ -197,4 +197,28 @@ class TomcatMigration {
197
setCandidateDefault("tomcat", "11.0.0")
198
}
199
200
+ @ChangeSet(
201
+ order = "019",
202
+ id = "019-update_tomcat_versions",
203
+ author = "stefanpenndorf"
204
+ )
205
+ def migration019(implicit db: MongoDatabase): Document = {
206
+ List(
207
+ "9" -> "9.0.100",
208
+ "10" -> "10.1.36",
209
+ "11" -> "11.0.4"
210
+ ).map {
211
+ case (series: String, version: String) =>
212
+ Version(
213
+ candidate = "tomcat",
214
+ version = version,
215
+ url =
216
+ s"https://archive.apache.org/dist/tomcat/tomcat-$series/v$version/bin/apache-tomcat-$version.zip"
217
218
+ }
219
+ .validate()
220
+ .insert()
221
+ setCandidateDefault("tomcat", "11.0.4")
222
223
+
224
0 commit comments