File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed
html/compose-compiler-integration/main-template Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
kotlin(" multiplatform" )
3
3
id(" org.jetbrains.compose" )
4
+ id(" org.jetbrains.kotlin.plugin.compose" )
4
5
}
5
6
6
7
repositories {
7
- mavenLocal()
8
8
mavenCentral()
9
9
maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
10
+ mavenLocal()
10
11
}
11
12
12
13
kotlin {
@@ -22,8 +23,11 @@ kotlin {
22
23
implementation(kotlin(" stdlib-common" ))
23
24
implementation(compose.runtime)
24
25
implementation(project(" :lib" ))
25
- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0-RC " )
26
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 " )
26
27
}
27
28
}
28
29
}
29
30
}
31
+
32
+ tasks.findByName(" jsBrowserProductionWebpack" )!! .mustRunAfter(" jsDevelopmentExecutableCompileSync" )
33
+ tasks.findByName(" jsNodeRun" )!! .mustRunAfter(" jsProductionExecutableCompileSync" )
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.0 .2-bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8 .2-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
kotlin(" multiplatform" )// version "1.5.10"
3
3
id(" org.jetbrains.compose" )// version (System.getenv("COMPOSE_INTEGRATION_VERSION") ?: "0.0.0-SNASPHOT")
4
+ id(" org.jetbrains.kotlin.plugin.compose" )
4
5
}
5
6
6
7
repositories {
7
- mavenLocal()
8
8
mavenCentral()
9
9
maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
10
+ mavenLocal()
10
11
}
11
12
12
13
kotlin {
@@ -21,8 +22,12 @@ kotlin {
21
22
dependencies {
22
23
implementation(kotlin(" stdlib-common" ))
23
24
implementation(compose.runtime)
24
- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0-RC " )
25
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 " )
25
26
}
26
27
}
27
28
}
28
29
}
30
+
31
+
32
+ tasks.findByName(" jsBrowserProductionWebpack" )!! .mustRunAfter(" jsDevelopmentExecutableCompileSync" )
33
+ tasks.findByName(" jsNodeRun" )!! .mustRunAfter(" jsProductionExecutableCompileSync" )
Original file line number Diff line number Diff line change 1
1
pluginManagement {
2
2
repositories {
3
- mavenLocal()
4
3
gradlePluginPortal()
5
4
maven {
6
5
url = uri(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
7
6
}
7
+ mavenLocal()
8
8
}
9
9
10
10
resolutionStrategy {
You can’t perform that action at this time.
0 commit comments