Skip to content

Commit

Permalink
Replace HTTP server (#1709)
Browse files Browse the repository at this point in the history
Replace HTTP server (http4k-server-netty -> org.http4k:http4k-server-ktorcnio)
  • Loading branch information
bartekpacia authored Sep 18, 2023
1 parent da25d25 commit e1f1115
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/patrol/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ android {
api "androidx.test.uiautomator:uiautomator:2.2.0"

implementation platform("org.http4k:http4k-bom:5.7.4.0")
implementation "org.http4k:http4k-core:5.7.4.0"
implementation "org.http4k:http4k-client-apache:5.7.4.0"
implementation "org.http4k:http4k-server-netty:5.7.4.0"
implementation "org.http4k:http4k-core"
implementation "org.http4k:http4k-client-apache"
implementation "org.http4k:http4k-server-ktorcio"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.5.2"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.google.common.util.concurrent.SettableFuture
import org.http4k.core.ContentType
import org.http4k.filter.ServerFilters
import org.http4k.server.Http4kServer
import org.http4k.server.Netty
import org.http4k.server.KtorCIO
import org.http4k.server.asServer
import java.util.concurrent.Future

Expand All @@ -29,7 +29,7 @@ class PatrolServer {
.withFilter(catcher)
.withFilter(printer)
.withFilter(ServerFilters.SetContentType(ContentType.TEXT_PLAIN))
.asServer(Netty(port))
.asServer(KtorCIO(port))
.start()

Logger.i("Created and started PatrolServer, port: $port")
Expand Down
2 changes: 1 addition & 1 deletion packages/patrol/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ android {
jvmTarget = "1.8"
}

//TODO verify
// TODO: Find workaround
packagingOptions {
pickFirst "META-INF/INDEX.LIST"
pickFirst "META-INF/io.netty.versions.properties"
Expand Down

0 comments on commit e1f1115

Please sign in to comment.