Skip to content

Commit 0e971fa

Browse files
committed
fix(jmh): explicitly configure JMH annotation processor in binary-tree benchmark
1 parent 9bb3aad commit 0e971fa

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

jmh/benchmark-binary-tree/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ THE POSSIBILITY OF SUCH DAMAGE.
8484
<compilerVersion>${javac.target}</compilerVersion>
8585
<source>${javac.target}</source>
8686
<target>${javac.target}</target>
87+
<annotationProcessorPaths>
88+
<path>
89+
<groupId>org.openjdk.jmh</groupId>
90+
<artifactId>jmh-generator-annprocess</artifactId>
91+
<version>${jmh.version}</version>
92+
</path>
93+
</annotationProcessorPaths>
94+
<fork>true</fork>
8795
</configuration>
8896
</plugin>
8997
<plugin>

0 commit comments

Comments
 (0)