Browse Source

Upgrade to JMH plugin 0.7.2

Closes gh-31517
pull/31519/head
Sam Brannen 2 years ago
parent
commit
de74520286
  1. 2
      build.gradle
  2. 9
      gradle/ide.gradle

2
build.gradle

@ -7,7 +7,7 @@ plugins { @@ -7,7 +7,7 @@ plugins {
id 'com.github.ben-manes.versions' version '0.49.0'
id 'com.github.johnrengelman.shadow' version '8.1.1' apply false
id 'de.undercouch.download' version '5.4.0'
id 'me.champeau.jmh' version '0.7.1' apply false
id 'me.champeau.jmh' version '0.7.2' apply false
id 'me.champeau.mrjar' version '0.1.1'
}

9
gradle/ide.gradle

@ -60,15 +60,6 @@ eclipse.classpath.file.whenMerged { @@ -60,15 +60,6 @@ eclipse.classpath.file.whenMerged {
}
}
// Ensure that JMH sources and resources are treated as test classpath entries
// so that they can see test fixtures.
// https://github.com/melix/jmh-gradle-plugin/issues/157
eclipse.classpath.file.whenMerged {
entries.findAll { it.path =~ /src\/jmh\/(java|kotlin|resources)/ }.each {
it.entryAttributes['test'] = 'true'
}
}
// Include project specific settings
task eclipseSettings(type: Copy) {
from rootProject.files(

Loading…
Cancel
Save