remove jmh

This commit is contained in:
2018-01-22 18:21:40 +01:00
parent c5e49b388b
commit 67c16460d8

View File

@@ -1,16 +1,3 @@
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.champeau.gradle:jmh-gradle-plugin:0.4.5"
}
}
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
@@ -22,7 +9,6 @@ subprojects {
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'maven-publish' apply plugin: 'maven-publish'
apply plugin: 'me.champeau.gradle.jmh'
// java compatibility version // java compatibility version
sourceCompatibility = 1.8 sourceCompatibility = 1.8
@@ -63,10 +49,6 @@ subprojects {
dependencies { dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'junit', name: 'junit', version: '4.12'
} }
jmh {
jvmArgsAppend = "-ea"
}
} }
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {