Fixed deprecation

Kotlin upgrade
This commit is contained in:
Juha Heinanen
2024-04-06 17:52:08 +03:00
parent 5523042dc4
commit 23ae74e4fe

View File

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.8.22'
ext.kotlin_version = '1.9.20'
repositories {
google()
mavenCentral()
@ -20,6 +20,6 @@ allprojects {
}
}
tasks.register('clean') {
delete rootProject.buildDir
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}