23 lines
451 B
Groovy
23 lines
451 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'kotlin'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
|
|
jar {
|
|
|
|
// Enable to build jar including dependencies
|
|
//from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
|
|
} |