-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
39 lines (34 loc) · 1.41 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
plugins {
id 'java'
}
group 'in.ashwanik'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.10'
compileOnly 'org.projectlombok:lombok:1.18.10'
implementation "org.slf4j:slf4j-api:1.7.25"
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: "4.1.1"
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.0.0'
testImplementation("org.assertj:assertj-core:3.10.0")
}
test {
afterSuite { desc, result ->
if (!desc.parent)
println("${result.resultType} " +
"(${result.testCount} tests, " +
"${result.successfulTestCount} successes, " +
"${result.failedTestCount} failures, " +
"${result.skippedTestCount} skipped)")
}
}