Fix benchmarks 40/89440/2
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 27 Apr 2020 11:27:59 +0000 (13:27 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 27 Apr 2020 11:28:55 +0000 (13:28 +0200)
The benchmark was mis-generated ever since the compiler was
refactored. Fix it up.

Change-Id: Ia3c184b998b8d509aaf502e97d168c5d8d97b7a8
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
benchmarks/pom.xml

index 235004045eb9ac88e6dd4a020a8891cb64d8b2ce..49b0ef417dc6e0478dcef7affb99754880c353d9 100644 (file)
         <dependency>
             <groupId>org.openjdk.jmh</groupId>
             <artifactId>jmh-core</artifactId>
-            <version>1.21</version>
-        </dependency>
-        <dependency>
-            <groupId>org.openjdk.jmh</groupId>
-            <artifactId>jmh-generator-annprocess</artifactId>
-            <version>1.21</version>
+            <version>1.23</version>
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <annotationProcessorPaths>
+                        <dependency>
+                            <groupId>org.openjdk.jmh</groupId>
+                            <artifactId>jmh-generator-annprocess</artifactId>
+                            <version>1.23</version>
+                        </dependency>
+                    </annotationProcessorPaths>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
     <profiles>
         <profile>
             <activation>