2019-03-08 11:55:01 +03:00
|
|
|
plugins {
|
2019-07-21 18:21:13 +03:00
|
|
|
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")
|
2019-06-25 10:01:21 +03:00
|
|
|
testCompile(kotlin("test-js"))
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
|
2019-07-21 18:21:13 +03:00
|
|
|
kotlin{
|
|
|
|
sourceSets["main"].dependencies{
|
2019-07-24 20:22:23 +03:00
|
|
|
implementation(npm("three","0.106.2"))
|
2019-07-21 18:21:13 +03:00
|
|
|
implementation(npm("@hi-level/three-csg"))
|
|
|
|
implementation(npm("style-loader"))
|
|
|
|
implementation(npm("element-resize-event"))
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
}
|