visionforge/dataforge-vis-spatial-js/build.gradle.kts

22 lines
513 B
Plaintext
Raw Normal View History

2019-03-08 11:55:01 +03:00
plugins {
id("scientifik.js")
2019-07-24 20:22:23 +03:00
//id("kotlin-dce-js")
2019-07-14 22:08:15 +03:00
}
//val kotlinVersion: String by rootProject.extra
2019-03-08 11:55:01 +03:00
dependencies {
2019-07-08 22:25:08 +03:00
api(project(":dataforge-vis-spatial"))
2019-07-24 20:22:23 +03:00
api("info.laht.threekt:threejs-wrapper:0.106-npm-3")
testCompile(kotlin("test-js"))
2019-03-08 11:55:01 +03:00
}
kotlin{
sourceSets["main"].dependencies{
2019-07-24 20:22:23 +03:00
implementation(npm("three","0.106.2"))
implementation(npm("@hi-level/three-csg"))
implementation(npm("style-loader"))
implementation(npm("element-resize-event"))
2019-03-08 11:55:01 +03:00
}
}