summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGeorge Fraser <george@fivetran.com>2018-12-29 11:06:03 -0800
committerGeorge Fraser <george@fivetran.com>2018-12-29 11:06:03 -0800
commitf38688c8b05c9df9115b49866c86e273bbb3e160 (patch)
treeb5ce468a8273128dfb753f64e2f7944884fabf47 /pom.xml
parent42db035b1099267db8ad4c7f39e3991ff4aad697 (diff)
downloadjava-language-server-f38688c8b05c9df9115b49866c86e273bbb3e160.zip
Benchmark string search approaches
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 8648214..bc2e6fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,6 +34,19 @@
<version>1.3</version>
<scope>test</scope>
</dependency>
+ <!-- Benchmarking -->
+ <dependency>
+ <groupId>org.openjdk.jmh</groupId>
+ <artifactId>jmh-core</artifactId>
+ <version>1.21</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.openjdk.jmh</groupId>
+ <artifactId>jmh-generator-annprocess</artifactId>
+ <version>1.21</version>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
<plugins>
@@ -45,6 +58,14 @@
<configuration>
<source>10</source>
<target>10</target>
+ <!-- Workaround of https://issues.apache.org/jira/browse/MCOMPILER-369 -->
+ <annotationProcessorPaths>
+ <path>
+ <groupId>org.openjdk.jmh</groupId>
+ <artifactId>jmh-generator-annprocess</artifactId>
+ <version>1.21</version>
+ </path>
+ </annotationProcessorPaths>
</configuration>
</plugin>
</plugins>