File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
src/test/kotlin/org/jetbrains/dataframe/gradle
src/test/kotlin/org/jetbrains/dataframe/ksp Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ dependencies {
32
32
testImplementation(" io.kotest:kotest-assertions-core:4.6.0" )
33
33
testImplementation(" com.android.tools.build:gradle-api:7.3.1" )
34
34
testImplementation(" com.android.tools.build:gradle:7.3.1" )
35
- testImplementation(" io.ktor:ktor-server-netty:1.6.7 " )
35
+ testImplementation(" io.ktor:ktor-server-netty:2.3.6 " )
36
36
testImplementation(libs.h2db)
37
37
testImplementation(gradleApi())
38
38
}
Original file line number Diff line number Diff line change 1
1
package org.jetbrains.dataframe.gradle
2
2
3
- import io.ktor.application.*
4
3
import io.ktor.http.*
5
- import io.ktor.response.*
6
- import io.ktor.routing.*
4
+ import io.ktor.server.application.*
7
5
import io.ktor.server.engine.*
8
6
import io.ktor.server.netty.*
7
+ import io.ktor.server.response.*
8
+ import io.ktor.server.routing.*
9
9
10
10
fun useHostedJson (json : String , f : (url: String ) -> Unit ) {
11
11
// duplicated in ksp/EmbeddedServerRunners.kt
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ dependencies {
25
25
testImplementation(" org.jetbrains.kotlin:kotlin-test" )
26
26
testImplementation(" com.github.tschuchortdev:kotlin-compile-testing:1.5.0" )
27
27
testImplementation(" com.github.tschuchortdev:kotlin-compile-testing-ksp:1.5.0" )
28
- testImplementation(" io.ktor:ktor-server-netty:1.6.7 " )
28
+ testImplementation(" io.ktor:ktor-server-netty:2.3.6 " )
29
29
testImplementation(" io.kotest:kotest-assertions-core:4.6.0" )
30
30
}
31
31
Original file line number Diff line number Diff line change 1
1
package org.jetbrains.dataframe.ksp
2
2
3
- import io.ktor.application.*
4
- import io.ktor.response.*
5
- import io.ktor.routing.*
3
+ import io.ktor.server.application.*
6
4
import io.ktor.server.engine.*
7
5
import io.ktor.server.netty.*
6
+ import io.ktor.server.response.*
7
+ import io.ktor.server.routing.*
8
8
import java.io.File
9
9
10
10
fun useHostedFile (file : File , f : (url: String ) -> Unit ) {
You can’t perform that action at this time.
0 commit comments