7b5ffefa8f
Version 0.9.15 is producing an error on CI: - Could not find org.jetbrains.dokka:integration:0.9.15.
22 lines
487 B
Groovy
22 lines
487 B
Groovy
apply plugin: 'kotlin-platform-jvm'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
expectedBy project(":")
|
|
testCompile "junit:junit:$junitVersion"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
from components.java
|
|
}
|
|
}
|
|
}
|