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 7b13074 commit d08ca6aCopy full SHA for d08ca6a
src/main/scala/io/sdkman/changelogs/TomcatMigration.scala
@@ -171,4 +171,30 @@ class TomcatMigration {
171
setCandidateDefault("tomcat", "10.1.30")
172
}
173
174
+ @ChangeSet(
175
+ order = "018",
176
+ id = "018-update_tomcat_versions",
177
+ author = "kartikvarma"
178
+ )
179
+ def migration018(implicit db: MongoDatabase): Document = {
180
+ removeVersion("tomcat", "11.0.0-M26")
181
+
182
+ List(
183
+ "9" -> "9.0.96",
184
+ "10" -> "10.1.31",
185
+ "11" -> "11.0.0"
186
+ ).map {
187
+ case (series: String, version: String) =>
188
+ Version(
189
+ candidate = "tomcat",
190
+ version = version,
191
+ url =
192
+ s"https://archive.apache.org/dist/tomcat/tomcat-$series/v$version/bin/apache-tomcat-$version.zip"
193
194
+ }
195
+ .validate()
196
+ .insert()
197
+ setCandidateDefault("tomcat", "11.0.0")
198
199
200
0 commit comments