15 lines
393 B
Groovy
15 lines
393 B
Groovy
|
description = "Platform-independent interfaces for kotlin maths"
|
||
|
|
||
|
apply plugin: 'kotlin-platform-common'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
|
||
|
}
|
||
|
|