forked from kscience/kmath
19 lines
520 B
Plaintext
19 lines
520 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
jcenter()
|
|
}
|
|
|
|
val kotlinVersion = "1.3.30"
|
|
|
|
// 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.5")
|
|
implementation("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4")
|
|
implementation("com.moowork.gradle:gradle-node-plugin:1.3.1")
|
|
}
|