Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Feb 1, 2025
1 parent 02c03cd commit 1b80254
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id("org.graalvm.buildtools.native") version("0.10.4")
}

val hexagonVersion = "4.0.0-B1"
val hexagonVersion = "4.0.0-B2"
val gradleScripts = "../hexagon/gradle"

ext.set("modules", "java.logging,java.management")
Expand All @@ -25,7 +25,7 @@ group="org.example"
description="Service's description"

dependencies {
"implementation"("com.hexagontk.http:http_server_helidon:$hexagonVersion")
"implementation"("com.hexagontk.http:http_server_jdk:$hexagonVersion")

"testImplementation"("com.hexagontk.http:http_client_jetty:$hexagonVersion")
"testImplementation"("org.slf4j:slf4j-nop:2.0.16")
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/Application.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package org.example

import com.hexagontk.core.*
import com.hexagontk.http.server.*
import com.hexagontk.http.server.helidon.HelidonHttpServer
import com.hexagontk.http.server.jdk.JdkHttpServer
import com.hexagontk.core.media.TEXT_PLAIN
import com.hexagontk.http.model.ContentType
import com.hexagontk.http.model.Field

internal val settings = HttpServerSettings(ALL_INTERFACES, 9090)
internal val serverAdapter = HelidonHttpServer()
internal val serverAdapter = JdkHttpServer()

internal lateinit var server: HttpServer

Expand Down

0 comments on commit 1b80254

Please sign in to comment.