-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (49 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
group 'sajjady'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
kotlin {
experimental {
coroutines "enable"
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "io.ktor:ktor-client-okhttp:1.2.1"
// compile ' org.apache.cassandra:cassandra-all:0.8.1'
compile "io.ktor:ktor-server-netty:1.2.2"
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50"
compile "io.ktor:ktor-server-core:1.2.4"
compile "io.ktor:ktor-gson:1.2.2"
testCompile group: 'junit', name: 'junit', version: '4.12'
// compile files('com/examp le/slf4j-nop-1.7.28.jar')
compile "ch.qos.logback:logback-classic:1.2.1"
// compile "io.ktor:ktor-client-logging:1.2.2"
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'org.optaplanner:optaplanner-core:7.9.0.Final'
compile 'com.github.salomonbrys.kotson:kotson:2.5.0'
implementation "com.soywiz.korlibs.klock:klock-jvm:1.7.0"
}
mainClassName = 'com.example.MyClass'
task stage {
dependsOn installDist
}