Files
kotlin-fork/performance/buildSrc/build.gradle
T
LepilkinaElena 828b2702bf Rewrote application with benchmarks using MPP plugin and added collec… (#2471)
Rewrote application with benchmarks using MPP plugin and added collecting information in json format.
2018-12-21 14:35:23 +03:00

35 lines
756 B
Groovy

buildscript {
repositories {
maven {
url 'https://cache-redirector.jetbrains.com/maven-central'
}
maven {
url kotlinCompilerRepo
}
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
apply plugin: 'kotlin'
repositories {
maven {
url kotlinCompilerRepo
}
maven {
url buildKotlinCompilerRepo
}
jcenter()
}
dependencies {
compileOnly gradleApi()
implementation "org.jetbrains.kotlin:kotlin-gradle-plugin"
implementation "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion"
}
sourceSets.main.kotlin.srcDirs = ["src", "$projectDir/../../tools/benchmarks/shared/src"]