mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-01-11 02:09:56 +00:00
31 lines
643 B
Plaintext
31 lines
643 B
Plaintext
|
project.version = "$version"
|
||
|
project.group = "$group"
|
||
|
|
||
|
apply from: "$publishGradlePath"
|
||
|
|
||
|
kotlin {
|
||
|
js (BOTH) {
|
||
|
browser()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
implementation kotlin('stdlib')
|
||
|
}
|
||
|
}
|
||
|
commonTest {
|
||
|
dependencies {
|
||
|
implementation kotlin('test-common')
|
||
|
implementation kotlin('test-annotations-common')
|
||
|
}
|
||
|
}
|
||
|
jsTest {
|
||
|
dependencies {
|
||
|
implementation kotlin('test-js')
|
||
|
implementation kotlin('test-junit')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|