Fix JSP 2.3 muzzle (#2185)

* Fix JSP 2.3 muzzle

Tomcat 10.0.2 was released just today; version 10.0.x is supposed to use JSP 3.0 (and servlet 5.0) so this broke the muzzle task.

* skipVersions
This commit is contained in:
Mateusz Rzeszutek 2021-02-04 06:42:16 +01:00 committed by GitHub
parent 02ca471577
commit c5456d559d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@ muzzle {
group = "org.apache.tomcat"
module = "tomcat-jasper"
// range [7.0.0,7.0.19) and version 8.0.9 missing from maven
versions = "[7.0.19,8.0.9),(8.0.9,)"
// tomcat 10 uses JSP 3.0
versions = "[7.0.19,10)"
skipVersions += '8.0.9'
}
}