kotlin-result/jvm/build.gradle
Michael Bull 7b5ffefa8f Downgrade dokka
Version 0.9.15 is producing an error on CI:
- Could not find org.jetbrains.dokka:integration:0.9.15.
2017-12-16 19:50:00 +00:00

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
}
}
}