Skip to content

Commit

Permalink
webmvc 21
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
Adrian Cole committed Dec 16, 2023
1 parent f797a9b commit df0a054
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions instrumentation/spring-webmvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,26 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<!-- TODO: Spring 2.5 tests fail on JDK >11 with the following:
Could not initialize class org.springframework.cglib.proxy.Enhancer

Someone can try debugging https://github.com/cglib/cglib/issues/191
We will likely raise our floor spring version up once we release Brave
3 or JDK 11 is EOL, whichever comes first. -->
<profile>
<id>invoker-only-11</id>
<activation>
<jdk>[11,12)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<properties>
Expand Down

0 comments on commit df0a054

Please sign in to comment.