mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-15 21:03:50 +00:00
40 lines
758 B
Plaintext
40 lines
758 B
Plaintext
project.version = "$version"
|
|
project.group = "$group"
|
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib')
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin('test-common')
|
|
implementation kotlin('test-annotations-common')
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
}
|
|
}
|