Skip to content

Commit 6149127

Browse files
authored
Update SDK benchmarks to be able to run with Java 25 (aws#6775)
1 parent da3ed60 commit 6149127

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/sdk-benchmarks/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,15 @@
279279
<plugin>
280280
<groupId>org.apache.maven.plugins</groupId>
281281
<artifactId>maven-compiler-plugin</artifactId>
282-
<version>3.1</version>
282+
<version>3.8.0</version>
283283
<!-- Override the configuration in the parent-->
284284
<configuration combine.self="override">
285285
<compilerVersion>${javac.target}</compilerVersion>
286286
<source>${javac.target}</source>
287287
<target>${javac.target}</target>
288+
<annotationProcessors>
289+
<annotationProcessor>org.openjdk.jmh.generators.BenchmarkProcessor</annotationProcessor>
290+
</annotationProcessors>
288291
</configuration>
289292
<executions>
290293
<execution>

0 commit comments

Comments
 (0)