Skip to content

Instantly share code, notes, and snippets.

@mike-ensor
Last active December 29, 2016 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mike-ensor/db2b299a46e9019fea448c3bfb535200 to your computer and use it in GitHub Desktop.
Save mike-ensor/db2b299a46e9019fea448c3bfb535200 to your computer and use it in GitHub Desktop.
add-jmh-dependencies
<dependencies>
<!-- Other libraries left out for brevity -->
<!-- jmh.version is the lastest version of JMH. Find by visiting
http://search.maven.org -->
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
<!-- Other libraries left out for brevity -->
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment