mirror of
https://github.com/Assasinnys/ED-AStar-Galaxy-Router
synced 2025-04-12 06:30:01 +03:00
31 lines
720 B
Groovy
31 lines
720 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
|
|
}
|
|
|
|
group 'ED-AStar-Galaxy-Router'
|
|
version '1.0'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
compile group: 'org.json', name: 'json', version: '20190722'
|
|
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.2'
|
|
compile group: 'javazoom', name: 'jlayer', version: '1.0.1'
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |