chains/build.gradle
ligi 30fe54fdf6
Use Kotlin 1.7.20 (#1677)
fixes #1670 by also updating ksp
2022-10-01 06:10:22 +02:00

27 lines
581 B
Groovy

buildscript {
ext {
KOTLIN_VERSION = "1.7.20"
KETHEREUM_VERSION = "0.85.7"
}
repositories {
gradlePluginPortal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.42.0'
}
}
subprojects {
apply plugin: "kotlin"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
apply from: 'https://raw.githubusercontent.com/ligi/gradle-common/master/versions_plugin_stable_only.gradle'