File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ buildscript {
7
7
}
8
8
9
9
plugins {
10
- id ' me.champeau.gradle.jmh' version ' 0.3.0'
10
+ id ' com.gradle.build-scan' version ' 1.0' // Should be first in list
11
+ id ' com.github.johnrengelman.shadow' version ' 1.2.3'
12
+ id ' me.champeau.gradle.jmh' version ' 0.3.1'
11
13
}
12
14
13
15
import org.gradle.internal.jvm.Jvm
@@ -122,6 +124,7 @@ class Tags {
122
124
}
123
125
124
126
subprojects {
127
+ apply plugin : ' com.github.johnrengelman.shadow'
125
128
apply plugin : ' me.champeau.gradle.jmh'
126
129
apply plugin : ' java'
127
130
@@ -153,6 +156,7 @@ subprojects {
153
156
154
157
jmh {
155
158
jmhVersion = ' 1.13'
159
+ duplicateClassesStrategy = ' warn'
156
160
}
157
161
158
162
List createdTasks = []
@@ -303,3 +307,8 @@ task verify(type:Exec) {
303
307
println (" execute 'gradlew run' first" )
304
308
}
305
309
}
310
+
311
+ buildScan {
312
+ licenseAgreementUrl = ' https://gradle.com/terms-of-service'
313
+ licenseAgree = ' yes'
314
+ }
You can’t perform that action at this time.
0 commit comments