Convert tomcat 10 tests from groovy to java#11420
Conversation
steverao
left a comment
There was a problem hiding this comment.
It seems there is a compilation failed in the latest dependency. You can refer to https://scans.gradle.com/s/p2fu2s6egkes4
or you also can reproduce the error in your local by running the command ./gradlew :instrumentation:tomcat:tomcat-10.0:javaagent:compileTestJava -PtestLatestDeps=true
|
thanks @steverao , i am still investigating the cause (i also started a thread in slack) From what I can tell, it looks like the problem is that in Tomcat 10 it switched from using the javax HttpServlet to using the Jakarta implementation, which has a Deprecation annotation that uses two arguments that can't be parsed by java 8?
I tried adding adding |
…s from deprecation annotation methods
Related to #7195