forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (20 loc) · 693 Bytes
/
build.gradle
File metadata and controls
23 lines (20 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'me.champeau.gradle:jmh-gradle-plugin:0.5.2'
}
}
apply plugin: 'com.mindviewinc.example-output-verification'
subprojects {
apply from: "$rootProject.projectDir/gradle/java.gradle"
apply from: "$rootProject.projectDir/gradle/junit-jupiter.gradle"
apply from: "$rootProject.projectDir/gradle/jmh.gradle"
// apply from: "$rootProject.projectDir/gradle/checkstyle.gradle"
apply from: "$rootProject.projectDir/gradle/findbugs.gradle"
apply plugin: 'com.mindviewinc.tagging'
}
apply from: 'gradle/subprojects.gradle'