Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
skiko
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liuqiang
skiko
Commits
c0f01520
Unverified
Commit
c0f01520
authored
Feb 26, 2024
by
Oleksandr Karpovich
Committed by
GitHub
Feb 26, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use coroutines 1.8.0 for all targets (#879)
According to COMPOSE-939
parent
43ec3166
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
build.gradle.kts
skiko/build.gradle.kts
+2
-10
No files found.
skiko/build.gradle.kts
View file @
c0f01520
...
@@ -15,8 +15,7 @@ plugins {
...
@@ -15,8 +15,7 @@ plugins {
apply
<
WasmImportsGeneratorCompilerPluginSupportPlugin
>()
apply
<
WasmImportsGeneratorCompilerPluginSupportPlugin
>()
apply
<
WasmImportsGeneratorForTestCompilerPluginSupportPlugin
>()
apply
<
WasmImportsGeneratorForTestCompilerPluginSupportPlugin
>()
val
coroutinesVersion
=
"1.7.3"
val
coroutinesVersion
=
"1.8.0"
val
coroutinesForWebVersion
=
"1.8.0-RC2"
// TODO: remove this (https://youtrack.jetbrains.com/issue/COMPOSE-939)
val
atomicfuVersion
=
"0.23.2"
val
atomicfuVersion
=
"0.23.2"
val
skiko
=
SkikoProperties
(
rootProject
)
val
skiko
=
SkikoProperties
(
rootProject
)
...
@@ -151,7 +150,7 @@ kotlin {
...
@@ -151,7 +150,7 @@ kotlin {
}
}
val
commonTest
by
getting
{
val
commonTest
by
getting
{
dependencies
{
dependencies
{
implementation
(
kotlin
(
"test
-common
"
))
implementation
(
kotlin
(
"test"
))
implementation
(
kotlin
(
"test-annotations-common"
))
implementation
(
kotlin
(
"test-annotations-common"
))
}
}
}
}
...
@@ -211,17 +210,10 @@ kotlin {
...
@@ -211,17 +210,10 @@ kotlin {
if
(
supportJs
||
supportWasm
)
{
if
(
supportJs
||
supportWasm
)
{
val
jsWasmMain
by
creating
{
val
jsWasmMain
by
creating
{
dependsOn
(
nativeJsMain
)
dependsOn
(
nativeJsMain
)
dependencies
{
implementation
(
"org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesForWebVersion"
)
}
}
}
val
jsWasmTest
by
creating
{
val
jsWasmTest
by
creating
{
dependsOn
(
nativeJsTest
)
dependsOn
(
nativeJsTest
)
dependencies
{
implementation
(
kotlin
(
"test"
))
implementation
(
"org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesForWebVersion"
)
}
}
}
if
(
supportJs
)
{
if
(
supportJs
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment