Browse Source

Fix issue with IntelliJ and not having the script runtime on the classpath

master
Edwin Jakobs 5 years ago
parent
commit
38254b084d
  1. 4
      build.gradle.kts

4
build.gradle.kts

@ -167,6 +167,10 @@ dependencies {
runtimeOnly(orxNatives("orx-kinect-v1"))
}
if ("orx-olive" in orxFeatures) {
implementation("org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion")
}
implementation(kotlin("stdlib-jdk8"))
testImplementation("junit", "junit", "4.12")
//</editor-fold>

Loading…
Cancel
Save