File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -46,13 +46,19 @@ extensions.configure<JMHPluginExtension>("jmh") {
46
46
// includeTests = false
47
47
}
48
48
49
- tasks.named<Jar >(" jmhJar" ) {
49
+ val jmhJarTask = tasks.named<Jar >(" jmhJar" ) {
50
50
archiveBaseName by " benchmarks"
51
51
archiveClassifier by null
52
52
archiveVersion by null
53
53
destinationDirectory.file(" $rootDir " )
54
54
}
55
55
56
+ tasks {
57
+ build {
58
+ dependsOn(jmhJarTask)
59
+ }
60
+ }
61
+
56
62
dependencies {
57
63
implementation(" org.openjdk.jmh:jmh-core:1.26" )
58
64
implementation(" io.projectreactor:reactor-core:${version(" reactor" )} " )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pluginManagement {
8
8
9
9
// JMH
10
10
id " net.ltgt.apt" version " 0.21"
11
- id " me.champeau.gradle.jmh" version " 0.5.2 "
11
+ id " me.champeau.gradle.jmh" version " 0.5.3 "
12
12
}
13
13
14
14
repositories {
You can’t perform that action at this time.
0 commit comments