-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
45 lines (36 loc) · 1.06 KB
/
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
42
43
44
45
group 'me.vsadokhin.iot'
version '0.0.1-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
}
subprojects {
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenLocal()
mavenCentral()
}
test {
ignoreFailures = true
testLogging.showStandardStreams = false
}
}
def powermock_version = "1.7.4"
def mockito_version = "1.10.19"
def junit_version = "4.12"
ext.libs = [
powermock_junit: [
dependencies.create("junit:junit:${junit_version}"),
dependencies.create("org.powermock:powermock-module-junit4:${powermock_version}") {
exclude module: "junit"
exclude module: "mockito-core"
},
dependencies.create("org.powermock:powermock-api-mockito:${powermock_version}") {
exclude module: "mockito-all"
exclude module: "mockito-core"
},
"org.mockito:mockito-core:${mockito_version}",
]
]