-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
39 lines (31 loc) · 897 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
37
38
plugins {
application
}
group = "me.chiam.gordon"
version = "0.1.0"
application {
mainClassName = "me.chiam.gordon.ynabassistant.HelloWorldApplication"
}
repositories {
mavenCentral()
}
object Versions {
const val actionsOnGoogleVersion = "1.1.0"
const val dropwizardVersion = "1.3.11"
const val junitVersion = "5.4.2"
}
dependencies {
compile("com.google.actions", "actions-on-google", Versions.actionsOnGoogleVersion)
compile("io.dropwizard", "dropwizard-core", Versions.dropwizardVersion)
testCompile("org.junit.jupiter", "junit-jupiter-api", Versions.junitVersion)
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", Versions.junitVersion)
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}