temporal project in upgrade

This commit is contained in:
InsanusMokrassar 2024-06-03 22:21:56 +06:00
parent a0dd1aec3d
commit 629d7c7a82
4 changed files with 4 additions and 33 deletions

View File

@ -29,15 +29,6 @@ allprojects {
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
maven { url "https://nexus.inmo.dev/repository/maven-releases/" }
}
// temporal crutch until legacy tests will be stabled or legacy target will be removed
if (it != rootProject.findProject("docs")) {
tasks.whenTaskAdded { task ->
if(task.name == "jsLegacyBrowserTest" || task.name == "jsLegacyNodeTest") {
task.enabled = false
}
}
}
}
apply from: "./extensions.gradle"

View File

@ -1,7 +1,7 @@
[versions]
kt = "2.0.0"
kt-serialization = "1.6.3"
kt-serialization = "1.7.0-RC"
kt-coroutines = "1.8.1"
kslog = "1.3.4"
@ -21,17 +21,17 @@ koin = "3.5.6"
okio = "3.9.0"
ksp = "1.9.23-1.0.20"
ksp = "2.0.0-1.0.21"
kotlin-poet = "1.16.0"
versions = "0.51.0"
android-gradle = "8.2.0"
android-gradle = "8.2.2"
dexcount = "4.0.0"
android-coreKtx = "1.13.1"
android-recyclerView = "1.3.2"
android-appCompat = "1.6.1"
android-appCompat = "1.7.0"
android-fragment = "1.7.1"
android-espresso = "3.5.1"
android-test = "1.1.5"

View File

@ -57,16 +57,6 @@ kotlin {
implementation libs.android.espresso
}
}
mingwX64Test {
dependencies {
implementation kotlin('test-junit')
}
}
linuxX64Test {
dependencies {
implementation kotlin('test-junit')
}
}
androidMain.dependsOn jvmMain
}

View File

@ -43,16 +43,6 @@ kotlin {
implementation kotlin('test-js')
}
}
mingwX64Test {
dependencies {
implementation kotlin('test-junit')
}
}
linuxX64Test {
dependencies {
implementation kotlin('test-junit')
}
}
nativeMain.dependsOn commonMain
linuxX64Main.dependsOn nativeMain