Update kotlin to 1.9.21, use signer version from sonatype snapshots
This commit is contained in:
parent
3b2616561c
commit
65fdac0cf6
3 changed files with 9 additions and 5 deletions
|
@ -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" }
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue