From 248478f25103c71c267978d47d250528be285db4 Mon Sep 17 00:00:00 2001 From: Matthias <56599453+12rcu@users.noreply.github.com> Date: Thu, 18 Jan 2024 00:10:22 +0100 Subject: [PATCH] Update central url (#17) * update repo url? --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 033bd3e..fa4d6f5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,12 +13,12 @@ dependencies { // https://mvnrepository.com/artifact/com.google.code.gson/gson implementation(group = "com.google.code.gson", name = "gson", version = "2.8.9") - implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.31") + implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.0") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") // https://mvnrepository.com/artifact/ch.qos.logback/logback-classic - implementation("ch.qos.logback:logback-classic:1.4.11") + implementation("ch.qos.logback:logback-classic:1.4.12") // https://mvnrepository.com/artifact/org.slf4j/slf4j-api implementation("org.slf4j:slf4j-api:2.0.9") @@ -73,7 +73,7 @@ repositories { nexusPublishing { repositories { sonatype { //only for users registered in Sonatype after 24 Feb 2021 - nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) + nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")) snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) username = System.getenv("MAVEN_USER_NAME") password = System.getenv("MAVEN_USER_PASSWORD")