summaryrefslogtreecommitdiff
path: root/game-engine/build.gradle
blob: eb706af52bfd163ff4c143c23d207a76fb3b40da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
    id "org.jetbrains.kotlin.jvm" version "1.2.51"
    id "org.jlleitschuh.gradle.ktlint" version "4.1.0"
}

group 'org.luxons'

repositories {
    jcenter()
}

dependencies {
    implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
    implementation 'com.github.salomonbrys.kotson:kotson:2.5.0'
    testImplementation 'junit:junit:4.12'
}
bgstack15