-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (35 loc) · 950 Bytes
/
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
buildscript {
ext.kotlin_version = "1.2.51"
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
group "blog.pprogs"
version "1.0-SNAPSHOT"
apply plugin: "java"
apply plugin: "kotlin"
apply plugin: "application"
mainClassName = "blog.pprogs.ktunion.UnionClient"
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.codehaus.groovy:groovy:3.0.0-alpha-3"
compile "com.andreapivetta.kolor:kolor:0.0.2"
compile "org.http4k:http4k-core:3.33.1"
compile "org.http4k:http4k-client-websocket:3.33.1"
compile "org.http4k:http4k-client-apache:3.33.1"
implementation "com.beust:klaxon:3.0.1"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}