You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by ru...@apache.org on 2021/10/27 14:48:29 UTC

[iceberg] branch master updated: Build: Bump Gradle JMH plugin from 0.5.3 to 0.6.6 (#3389)

This is an automated email from the ASF dual-hosted git repository.

russellspitzer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 0e8f877  Build: Bump Gradle JMH plugin from 0.5.3 to 0.6.6 (#3389)
0e8f877 is described below

commit 0e8f8776c19184d1cf7375c9d12d5d7b25036233
Author: Eduard Tudenhöfner <et...@gmail.com>
AuthorDate: Wed Oct 27 16:47:45 2021 +0200

    Build: Bump Gradle JMH plugin from 0.5.3 to 0.6.6 (#3389)
---
 build.gradle | 2 +-
 jmh.gradle   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/build.gradle b/build.gradle
index c1f74a2..6b57a2f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -29,7 +29,7 @@ buildscript {
     classpath 'com.palantir.gradle.gitversion:gradle-git-version:0.12.3'
     classpath 'com.diffplug.spotless:spotless-plugin-gradle:5.14.1'
     classpath 'gradle.plugin.org.inferred:gradle-processors:3.3.0'
-    classpath 'me.champeau.gradle:jmh-gradle-plugin:0.5.3'
+    classpath 'me.champeau.jmh:jmh-gradle-plugin:0.6.6'
     classpath "com.github.alisiikh:gradle-scalastyle-plugin:3.4.1"
   }
 }
diff --git a/jmh.gradle b/jmh.gradle
index 50f73b0..b56d8e4 100644
--- a/jmh.gradle
+++ b/jmh.gradle
@@ -37,7 +37,7 @@ if (sparkVersions.contains("3.2")) {
 }
 
 configure(jmhProjects) {
-  apply plugin: 'me.champeau.gradle.jmh'
+  apply plugin: 'me.champeau.jmh'
 
   jmh {
     jmhVersion = '1.32'
@@ -45,8 +45,8 @@ configure(jmhProjects) {
     forceGC = true
     includeTests = true
     humanOutputFile = file(jmhOutputPath)
-    include = [jmhIncludeRegex]
-    zip64 true
+    includes = [jmhIncludeRegex]
+    zip64 = true
   }
 
   jmhCompileGeneratedClasses {