Package: asm / 9.0-1

03-ignore-jmh-plugin.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Description: Ignore the JMH plugin
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,6 @@
   }
 }
 
-plugins { id 'me.champeau.gradle.jmh' version '0.5.0' apply false }
 plugins { id 'org.sonarqube' version '2.8' apply false }
 
 description = 'ASM, a very small and fast Java bytecode manipulation framework'
@@ -104,10 +103,8 @@
 // Use "gradle benchmarks:jmh [-PjmhInclude='<regex>']" to run the benchmarks.
 project(':benchmarks') {
   description = "Benchmarks for ${rootProject.description}"
-  apply plugin: 'me.champeau.gradle.jmh'
   dependencies {
     implementation files('libs/csg-bytecode-1.0.0.jar', 'libs/jclasslib.jar')
-    jmh project(':asm'), project(':asm-tree') 
   }
   depends = [
     'kawa:kawa:1.7',
@@ -131,12 +128,12 @@
     classes.dependsOn "asm${version}"
   }
   configurations.create('input-classes-java8')
-  dependencies.add('input-classes-java8', 'io.vavr:vavr:0.10.0@jar')
   task copyInputClasses(type: Copy) {
     from configurations.'input-classes-java8'.collect { zipTree(it) }
     into "${buildDir}/input-classes-java8"
   }
   classes.dependsOn copyInputClasses
+/*
   jmh {
     jvmArgsAppend = "-Duser.dir=${rootDir}"
     resultFormat = 'CSV'
@@ -145,6 +142,7 @@
       include = [jmhInclude]
     }
   }
+*/
 }
 
 project(':tools') {