Bumps [kotlin-stdlib](https://github.com/JetBrains/kotlin) from 1.5.21 to 1.5.31. - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.5.31/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.5.21...v1.5.31) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
380 B
Groovy
21 lines
380 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
|
|
}
|
|
}
|
|
|
|
group 'com.willfp'
|
|
version rootProject.version
|
|
|
|
subprojects {
|
|
apply plugin: "kotlin"
|
|
|
|
dependencies {
|
|
compileOnly project(":eco-api")
|
|
compileOnly 'org.jetbrains.kotlin:kotlin-stdlib:1.5.31'
|
|
}
|
|
} |