You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2016/06/22 09:03:29 UTC

svn commit: r1749642 - /commons/proper/bcel/trunk/pom.xml

Author: sebb
Date: Wed Jun 22 09:03:29 2016
New Revision: 1749642

URL: http://svn.apache.org/viewvc?rev=1749642&view=rev
Log:
Update to current JMH version

Modified:
    commons/proper/bcel/trunk/pom.xml

Modified: commons/proper/bcel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/pom.xml?rev=1749642&r1=1749641&r2=1749642&view=diff
==============================================================================
--- commons/proper/bcel/trunk/pom.xml [UTF-8] (original)
+++ commons/proper/bcel/trunk/pom.xml [UTF-8] Wed Jun 22 09:03:29 2016
@@ -474,18 +474,24 @@
     <profile>
       <id>benchmark</id>
 
+      <properties>
+        <skipTests>true</skipTests>
+        <benchmark>org.apache</benchmark>
+        <jmh.version>1.12</jmh.version>
+      </properties>
+
       <dependencies>
         <dependency>
           <groupId>org.openjdk.jmh</groupId>
           <artifactId>jmh-core</artifactId>
-          <version>1.3.4</version>
+          <version>${jmh.version}</version>
           <scope>test</scope>
         </dependency>
 
         <dependency>
           <groupId>org.openjdk.jmh</groupId>
           <artifactId>jmh-generator-annprocess</artifactId>
-          <version>1.3.4</version>
+          <version>${jmh.version}</version>
           <scope>test</scope>
         </dependency>
 
@@ -504,11 +510,6 @@
         </dependency>
       </dependencies>
 
-      <properties>
-        <skipTests>true</skipTests>
-        <benchmark>org.apache</benchmark>
-      </properties>
-
       <build>
         <plugins>
           <!-- Enable the compilation of the benchmarks -->