mirror of
https://github.com/ChronosX88/InfluenceDHT-Kotlin.git
synced 2024-11-08 19:51:06 +00:00
26 lines
496 B
Groovy
26 lines
496 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'org.jetbrains.kotlin.jvm' version '1.3.30'
|
||
|
id 'com.github.johnrengelman.shadow' version '4.0.4'
|
||
|
}
|
||
|
|
||
|
group 'io.github.chronosx88'
|
||
|
version '0.1'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
}
|
||
|
|
||
|
compileKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|