-
Notifications
You must be signed in to change notification settings - Fork 51
/
build.gradle
72 lines (67 loc) · 2.16 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* Copyright (c) 2019. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.gradle.plugin.idea-ext"
id "groovy" // add 'test' task
}
kotlin {
jvm()
js() {
browser()
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib-common')
// implementation "io.github.microutils:kotlin-logging:$kotlinLogging_version"
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
implementation project(':test-common')
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
implementation "io.github.microutils:kotlin-logging-jvm:$kotlinLogging_version"
// compileOnly "org.hamcrest:hamcrest-core:$hamcrest_version"
// compileOnly "org.hamcrest:hamcrest-library:$hamcrest_version"
}
}
jvmTest {
dependencies {
implementation kotlin('test')
implementation kotlin('test-junit')
implementation "org.hamcrest:hamcrest-core:$hamcrest_version"
implementation "org.hamcrest:hamcrest-library:$hamcrest_version"
implementation "org.mockito:mockito-core:$mockito_version"
implementation "org.assertj:assertj-core:$assertj_version"
}
}
jsMain {
dependencies {
implementation kotlin('stdlib-js')
implementation "io.github.microutils:kotlin-logging-js:$kotlinLogging_version"
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
}
}
}
}
idea {
module {
settings {
packagePrefix["src/jvmMain/kotlin"] = "jetbrains.datalore"
packagePrefix["src/jvmTest/kotlin"] = "jetbrains.datalore"
}
}
}