Commit a265145
authored
Fix (#5254)
Fix NoClassDefFoundError HttpTimeout
```
Caused by: java.lang.NoClassDefFoundError: io/ktor/client/features/HttpTimeout
```
When run:
```
gradlew reuploadArtifactsToMavenCentral --info --stacktrace -Pmaven.central.sign=false -Pmaven.central.coordinates=org.jetbrains.compose.ui -Pmaven.central.stage=org.jetbrains.compose
```
By upgrading ktor, as Ktor 1 and Ktor 2 aren't backward compatible.
2 versions were used:
```
gradlew buildSrc:dependencyInsight --configuration compileClasspath --dependency ktor-client-core
```
```
io.ktor:ktor-client-core-jvm:2.3.13
\--- io.ktor:ktor-client-core:2.3.13
+--- io.ktor:ktor-client-okhttp:1.6.4 (requested io.ktor:ktor-client-core:1.6.4)
| \--- compileClasspath
\--- org.jetbrains:space-sdk-jvm:2024.3-185883
\--- compileClasspath
```
## Release Notes
N/A1 parent c971909 commit a265145
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
0 commit comments