Update to latest jmh version

Motivation:

We use an outdated jmh version.

Modifications:

Update to jmh 1.17.4.

Result:

Using latest jmh version.
This commit is contained in:
Norman Maurer 2017-02-13 10:44:30 +01:00
parent 6e834de311
commit cc848f6960

View File

@ -31,6 +31,7 @@
<properties>
<!-- Skip tests by default; run only if -DskipTests=false is specified -->
<skipTests>true</skipTests>
<jmh.version>1.17.4</jmh.version>
</properties>
<dependencies>
@ -47,12 +48,12 @@
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.14.1</version>
<version>${jmh.version}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.14.1</version>
<version>${jmh.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>