-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (31 loc) · 884 Bytes
/
build.gradle
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
defaultTasks 'clean', 'test', 'assemble'
task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
}
apply plugin: 'base'
allprojects {
group = 'demo'
version = '1.0.0'
apply plugin: 'idea'
apply from: "$rootDir/gradle/repositories.gradle"
}
subprojects {
apply plugin: 'java'
apply from: "$rootDir/gradle/repositories.gradle"
apply from: "$rootDir/gradle/providedScope.gradle"
apply from: "$rootDir/gradle/dependencies.gradle"
apply from: "$rootDir/gradle/filter.gradle"
apply from: "$rootDir/gradle/manifest.gradle"
apply from: "$rootDir/gradle/compiler.gradle"
apply from: "$rootDir/gradle/test.gradle"
apply from: "$rootDir/gradle/idea.gradle"
}
idea {
project {
languageLevel = '1.8'
}
module {
excludeDirs += file("$rootDir/.gradle")
excludeDirs += file("$rootDir/.idea")
}
}