Update kotlin to 1.9.21, use signer version from sonatype snapshots

This commit is contained in:
Mikołaj Pich 2023-11-28 22:55:58 +01:00
parent 3b2616561c
commit 65fdac0cf6
3 changed files with 9 additions and 5 deletions

View file

@ -18,7 +18,7 @@ ext {
moshi = "1.13.0"
}
version = "2.2.6"
version = "2.2.7-SNAPSHOT"
group = "io.github.wulkanowy"
nexusPublishing {
@ -43,7 +43,7 @@ allprojects {
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://jitpack.io" }
}

View file

@ -5,8 +5,12 @@ plugins {
id 'jacoco'
}
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
implementation 'com.github.wulkanowy.uonet-request-signer:hebe-jvm:5412ed8'
implementation 'io.github.wulkanowy.signer:hebe-jvm:0.1.0-SNAPSHOT'
implementation libs.retrofit.core
implementation libs.retrofit.scalars

View file

@ -5,13 +5,13 @@ include 'sdk'
dependencyResolutionManagement {
versionCatalogs {
libs {
def kotlin = '1.9.10'
def kotlin = '1.9.21'
version('kotlin', kotlin)
version('coroutines', '1.7.3')
version('retrofit', '2.10.0-SNAPSHOT')
version('retrofit-kotlinx-serialization', '1.0.0')
version('ksp', "${kotlin}-1.0.13")
version('ksp', "${kotlin}-1.0.15")
plugin('kotlin', 'org.jetbrains.kotlin.jvm').versionRef('kotlin')
plugin('ksp', 'com.google.devtools.ksp').versionRef('ksp')