update dependencies

This commit is contained in:
2024-12-09 10:01:03 +06:00
parent c2c8ffe19b
commit 2fe0d5c170
9 changed files with 54 additions and 26 deletions

View File

@@ -25,13 +25,14 @@ apply from: "github_release.gradle"
repositories {
mavenLocal()
mavenCentral()
maven { url "https://nexus.inmo.dev/repository/maven-releases/" }
}
kotlin {
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
}
}
@@ -78,6 +79,6 @@ kotlin {
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}