forked from dirkriehle/wahlzeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (41 loc) · 1.01 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
46
47
48
49
plugins {
id 'war'
id 'org.gretty' version '3.0.3'
id 'java'
}
repositories {
jcenter()
}
ext {
mainSourcesDir = 'src/main/java'
}
sourceSets {
main {
java {
srcDir mainSourcesDir
}
}
}
dependencies {
providedCompile 'javax.servlet:javax.servlet-api:4.0.1'
testCompile 'org.mockito:mockito-core:2.+'
implementation 'org.postgresql:postgresql:9.3-1104-jdbc41'
implementation 'log4j:log4j:1.2.17'
implementation 'com.sun.mail:javax.mail:1.6.2'
testImplementation 'junit:junit:4.12'
}
test {
filter {
includeTestsMatching "org.wahlzeit.*"
}
testLogging {
events "passed", "skipped", "failed"
afterSuite { desc, result ->
if (!desc.parent) {
println "Tests run: ${result.testCount}, " +
"Failures: ${result.failedTestCount}, " +
"Skipped: ${result.skippedTestCount}"
}
}
}
}