-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (33 loc) · 1.18 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
group 'org.plopl'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.0.4'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'se.transmode.gradle:gradle-docker:1.2'
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'kotlin'
apply plugin: 'docker'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
mainClassName = "org.plopl.chess.Main"
applicationDefaultJvmArgs = ["-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n"]
dependencies {
compile (
"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version",
[group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.5'],
[group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.5'],
[group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.8.5'],
[group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'],
[group: 'com.sparkjava', name: 'spark-core', version: '2.5.5']
)
testCompile group: 'junit', name: 'junit', version: '4.11'
}