-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle.kts
47 lines (40 loc) · 1.26 KB
/
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
39
40
41
42
43
44
45
46
47
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
group = "org.beeender"
version = "0.1.3-SNAPSHOT"
buildscript {
repositories { mavenCentral() }
dependencies {
classpath(kotlin("gradle-plugin", "1.3.21"))
}
}
plugins {
id("org.jetbrains.intellij") version "0.4.7"
kotlin("jvm") version "1.3.21"
}
repositories { mavenCentral() }
dependencies {
compile("org.msgpack", "msgpack-core", "0.8.16")
compile("org.msgpack", "jackson-dataformat-msgpack", "0.8.16")
compile("com.fasterxml.jackson.module", "jackson-module-kotlin", "2.9.8")
compile("org.scala-sbt.ipcsocket", "ipcsocket", "1.0.0")
implementation(kotlin("stdlib"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1")
testCompile("junit","junit", "4.12")
testImplementation("io.mockk", "mockk", "1.9")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
intellij {
updateSinceUntilBuild = false
// If the instrumentCode is enabled, the Test cannot call internal method.
// See https://github.com/JetBrains/gradle-intellij-plugin/issues/230
instrumentCode = false
version = "2019.1"
}