-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (28 loc) · 935 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
id("me.champeau.gradle.jmh") version "0.4.8"
id "ua.eshepelyuk.ManifestClasspath" version "1.0.0"
}
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.hexworks.cobalt:cobalt.databinding-jvm:$cobalt_version"
implementation "org.hexworks.amethyst:amethyst.core-jvm:$amethyst_version"
implementation "org.hexworks.zircon:zircon.core-jvm:$zircon_version"
implementation "org.hexworks.zircon:zircon.jvm.swing:$zircon_version"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
jmh {
jvmArgs = ['-Djmh.separateClasspathJAR=true']
jmhVersion = '1.20'
}