Fix tests after libraries and wrappers versions updating
This commit is contained in:
+2
-2
@@ -2,8 +2,8 @@ import org.jetbrains.compose.compose
|
||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.4.0"
|
||||
id("org.jetbrains.compose") version "0.1.0-dev106"
|
||||
kotlin("jvm") version "1.4.30"
|
||||
id("org.jetbrains.compose") version "0.3.0-build149"
|
||||
application
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id("org.jetbrains.compose") version "0.1.0-dev106"
|
||||
id("org.jetbrains.compose") version "0.3.0-build149"
|
||||
id("com.android.application")
|
||||
kotlin("android")
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ buildscript {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0")
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30")
|
||||
classpath("com.android.tools.build:gradle:4.0.1")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ import org.jetbrains.compose.compose
|
||||
|
||||
plugins {
|
||||
kotlin("multiplatform")
|
||||
id("org.jetbrains.compose") version "0.1.0-dev106"
|
||||
id("org.jetbrains.compose") version "0.3.0-build149"
|
||||
id("com.android.library")
|
||||
id("kotlin-android-extensions")
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ import org.jetbrains.compose.compose
|
||||
|
||||
plugins {
|
||||
kotlin("multiplatform")
|
||||
id("org.jetbrains.compose") version "0.1.0-dev106"
|
||||
id("org.jetbrains.compose") version "0.3.0-build149"
|
||||
application
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -54,8 +54,8 @@ kotlin {
|
||||
}
|
||||
jvmMain {
|
||||
dependencies {
|
||||
implementation 'io.ktor:ktor-server-netty:1.4.0'
|
||||
implementation 'io.ktor:ktor-html-builder:1.4.0'
|
||||
implementation 'io.ktor:ktor-server-netty:1.5.2'
|
||||
implementation 'io.ktor:ktor-html-builder:1.5.2'
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.2'
|
||||
}
|
||||
}
|
||||
@@ -66,8 +66,8 @@ kotlin {
|
||||
}
|
||||
jsMain {
|
||||
dependencies {
|
||||
implementation 'org.jetbrains:kotlin-react:16.13.1-pre.113-kotlin-1.4.0'
|
||||
implementation 'org.jetbrains:kotlin-react-dom:16.13.1-pre.113-kotlin-1.4.0'
|
||||
implementation 'org.jetbrains:kotlin-react:17.0.1-pre.148-kotlin-1.4.30'
|
||||
implementation 'org.jetbrains:kotlin-react-dom:17.0.1-pre.148-kotlin-1.4.30'
|
||||
}
|
||||
}
|
||||
jsTest {
|
||||
|
||||
+4
-4
@@ -52,8 +52,8 @@ kotlin {
|
||||
}
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
implementation("io.ktor:ktor-server-netty:1.4.0")
|
||||
implementation("io.ktor:ktor-html-builder:1.4.0")
|
||||
implementation("io.ktor:ktor-server-netty:1.5.2")
|
||||
implementation("io.ktor:ktor-html-builder:1.5.2")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.2")
|
||||
}
|
||||
}
|
||||
@@ -64,8 +64,8 @@ kotlin {
|
||||
}
|
||||
val jsMain by getting {
|
||||
dependencies {
|
||||
implementation("org.jetbrains:kotlin-react:16.13.1-pre.113-kotlin-1.4.0")
|
||||
implementation("org.jetbrains:kotlin-react-dom:16.13.1-pre.113-kotlin-1.4.0")
|
||||
implementation("org.jetbrains:kotlin-react:17.0.1-pre.148-kotlin-1.4.30")
|
||||
implementation("org.jetbrains:kotlin-react-dom:17.0.1-pre.148-kotlin-1.4.30")
|
||||
}
|
||||
}
|
||||
val jsTest by getting {
|
||||
|
||||
Reference in New Issue
Block a user