BASE-4618: Use JMH benchmark tool

This commit is contained in:
Daniel Strmecki
2021-03-06 10:00:01 +01:00
parent f0ee9ddf02
commit c8b3ecbd36
4 changed files with 52 additions and 44 deletions
@@ -16,6 +16,20 @@
<relativePath>../</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>core-java-lang-4</finalName>
<resources>
@@ -25,5 +39,9 @@
</resource>
</resources>
</build>
<properties>
<jmh.version>1.28</jmh.version>
</properties>
</project>