-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
30 lines (26 loc) · 899 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
plugins {
application
kotlin("jvm") version "1.2.21"
}
application {
mainClassName = "ua.kug.TwitterWallJSONKt"
}
dependencies {
val twitter4jVer = "4.0.6"
val jacksonCoreVer = "2.9.2"
compile(kotlin("stdlib-jdk8"))
compile(kotlin("reflect"))
compile("org.twitter4j", "twitter4j-core", twitter4jVer)
compile("org.twitter4j", "twitter4j-stream", twitter4jVer)
compile("io.javalin", "javalin", "1.3.0")
compile("com.fasterxml.jackson.core", "jackson-core", jacksonCoreVer)
compile("com.fasterxml.jackson.core", "jackson-databind", jacksonCoreVer)
compile("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "0.22.2")
testCompile(kotlin("test-junit"))
testCompile("junit", "junit", "4.12")
testCompile("io.kotlintest", "kotlintest", "2.0.7")
testCompile("com.nhaarman", "mockito-kotlin", "1.5.0")
}
repositories {
jcenter()
}