This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 8c595a2809 Fix pinot-perf annotation processor support (#14306)
8c595a2809 is described below
commit 8c595a2809c55229c617ab654b3cc19c9170b5fd
Author: Gonzalo Ortiz Jaureguizar <[email protected]>
AuthorDate: Mon Oct 28 00:15:57 2024 +0100
Fix pinot-perf annotation processor support (#14306)
---
pinot-perf/pom.xml | 15 ++++++++++++++-
pom.xml | 2 +-
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/pinot-perf/pom.xml b/pinot-perf/pom.xml
index af314abdc4..2789c03f80 100644
--- a/pinot-perf/pom.xml
+++ b/pinot-perf/pom.xml
@@ -93,7 +93,7 @@
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
- <artifactId>jmh-generator-annprocess</artifactId>
+ <artifactId>jmh-core</artifactId>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
@@ -102,6 +102,19 @@
</dependencies>
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <annotationProcessorPaths combine.children="append">
+ <path>
+ <groupId>org.openjdk.jmh</groupId>
+ <artifactId>jmh-generator-annprocess</artifactId>
+ <version>${jmh.version}</version>
+ </path>
+ </annotationProcessorPaths>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
diff --git a/pom.xml b/pom.xml
index b72e12403d..c572d446ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -919,7 +919,7 @@
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
- <artifactId>jmh-generator-annprocess</artifactId>
+ <artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
</dependency>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]