29 lines
439 B
Groovy
29 lines
439 B
Groovy
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
|
||
|
}
|
||
|
|
||
|
group = 'io.github.wulkanowy'
|
||
|
version = '0.1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'net.pwall.json:json-kotlin-schema:0.28'
|
||
|
|
||
|
testImplementation 'org.jetbrains.kotlin:kotlin-test:1.5.21'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnit()
|
||
|
}
|
||
|
|
||
|
compileKotlin {
|
||
|
kotlinOptions.jvmTarget = '11'
|
||
|
}
|
||
|
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions.jvmTarget = '11'
|
||
|
}
|