mirror of
https://bitbucket.org/projectswg/forwarder.git
synced 2026-01-15 22:04:29 -05:00
40 lines
601 B
Kotlin
40 lines
601 B
Kotlin
plugins {
|
|
idea
|
|
java
|
|
id("org.javamodularity.moduleplugin")
|
|
kotlin("jvm")
|
|
}
|
|
|
|
idea {
|
|
targetVersion = "12.0.1"
|
|
module {
|
|
inheritOutputDirs = true
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
dependencies {
|
|
implementation(project(":pswgcommon"))
|
|
implementation(project(":client-holocore"))
|
|
implementation(kotlin("stdlib"))
|
|
}
|
|
}
|
|
test {
|
|
dependencies {
|
|
implementation(group="junit", name="junit", version="4.12")
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
kotlinOptions {
|
|
jvmTarget = "12"
|
|
}
|
|
}
|