kmath/buildSrc/build.gradle.kts

21 lines
643 B
Plaintext
Raw Normal View History

2019-04-17 12:24:06 +03:00
plugins {
`kotlin-dsl`
}
repositories {
gradlePluginPortal()
jcenter()
}
2019-05-02 10:10:04 +03:00
val kotlinVersion = "1.3.31"
2019-04-17 12:24:06 +03:00
// Add plugins used in buildSrc as dependencies, also we should specify version only here
dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
implementation("org.jfrog.buildinfo:build-info-extractor-gradle:4.9.6")
2019-04-17 12:24:06 +03:00
implementation("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:0.9.18")
2019-04-17 12:24:06 +03:00
implementation("com.moowork.gradle:gradle-node-plugin:1.3.1")
implementation("org.openjfx:javafx-plugin:0.0.7")
2019-04-17 12:24:06 +03:00
}