2021-05-14 22:23:28 +03:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
2022-01-04 13:15:50 +03:00
|
|
|
`version-catalog`
|
2022-03-31 22:27:50 +03:00
|
|
|
alias(miptNpmLibs.plugins.kotlin.plugin.serialization)
|
2021-05-14 22:23:28 +03:00
|
|
|
}
|
|
|
|
|
2022-01-04 13:15:50 +03:00
|
|
|
java.targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
|
2021-06-15 09:18:40 +03:00
|
|
|
repositories {
|
2022-03-08 23:15:48 +03:00
|
|
|
mavenLocal()
|
2021-06-19 16:52:26 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2021-06-15 09:18:40 +03:00
|
|
|
mavenCentral()
|
2021-06-19 16:52:26 +03:00
|
|
|
gradlePluginPortal()
|
2021-06-15 09:18:40 +03:00
|
|
|
}
|
|
|
|
|
2022-01-04 13:15:50 +03:00
|
|
|
val toolsVersion: String by extra
|
2022-03-31 22:27:50 +03:00
|
|
|
val kotlinVersion = miptNpmLibs.versions.kotlin.asProvider().get()
|
|
|
|
val benchmarksVersion = miptNpmLibs.versions.kotlinx.benchmark.get()
|
2022-01-04 13:15:50 +03:00
|
|
|
|
2021-06-15 09:18:40 +03:00
|
|
|
dependencies {
|
2022-01-04 13:15:50 +03:00
|
|
|
api("ru.mipt.npm:gradle-tools:$toolsVersion")
|
|
|
|
//plugins form benchmarks
|
|
|
|
api("org.jetbrains.kotlinx:kotlinx-benchmark-plugin:$benchmarksVersion")
|
|
|
|
api("org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion")
|
|
|
|
//to be used inside build-script only
|
2022-03-31 22:27:50 +03:00
|
|
|
implementation(miptNpmLibs.kotlinx.serialization.json)
|
2021-06-15 09:18:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets.all {
|
2022-01-04 13:15:50 +03:00
|
|
|
languageSettings.optIn("kotlin.OptIn")
|
2021-06-15 09:18:40 +03:00
|
|
|
}
|