26 lines
596 B
Groovy
26 lines
596 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.2.40'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|
|
|