-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
36 lines (29 loc) · 824 Bytes
/
build.gradle.kts
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
import org.gradle.api.tasks.testing.logging.TestLogEvent
val ktorVersion: String by project
val kotlinVersion: String by project
val logbackVersion: String by project
val guiceVersion: String by project
plugins {
base
kotlin("jvm") version "1.3.0"
}
allprojects {
group = "com.hyperanna.servicetemplate"
version = "1.0"
apply(plugin = "kotlin")
repositories {
mavenLocal()
jcenter()
maven { url = uri("https://kotlin.bintray.com/ktor") }
maven { url = uri("https://plugins.gradle.org/m2/") }
}
tasks.withType<Test> {
useJUnitPlatform {
includeEngines("junit-jupiter")
}
failFast = true
testLogging {
events = setOf(TestLogEvent.FAILED, TestLogEvent.PASSED, TestLogEvent.SKIPPED)
}
}
}