Skip to content

Commit dd67261

Browse files
committed
Added Andres Almiray JMH changes and also buildScan
1 parent a45ba31 commit dd67261

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ buildscript {
77
}
88

99
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'
1113
}
1214

1315
import org.gradle.internal.jvm.Jvm
@@ -122,6 +124,7 @@ class Tags {
122124
}
123125

124126
subprojects {
127+
apply plugin: 'com.github.johnrengelman.shadow'
125128
apply plugin: 'me.champeau.gradle.jmh'
126129
apply plugin: 'java'
127130

@@ -153,6 +156,7 @@ subprojects {
153156

154157
jmh {
155158
jmhVersion = '1.13'
159+
duplicateClassesStrategy = 'warn'
156160
}
157161

158162
List createdTasks = []
@@ -303,3 +307,8 @@ task verify(type:Exec) {
303307
println("execute 'gradlew run' first")
304308
}
305309
}
310+
311+
buildScan {
312+
licenseAgreementUrl = 'https://gradle.com/terms-of-service'
313+
licenseAgree = 'yes'
314+
}

0 commit comments

Comments
 (0)