...

/

Adding Dependencies and Starting the Server

Adding Dependencies and Starting the Server

Learn how to start the server in a Vert.x application in Kotlin.

We'll cover the following...

Adding the dependencies

Now, we need to add the following dependencies to our build.gradle.kts file:

val vertxVersion = "4.1.5"
dependencies {
    implementation("io.vertx:vertx-core:$vertxVersion")
    implementation("io.vertx:vertx-web:$vertxVersion")
    implementation("io.vertx:vertx-lang-kotlin:$vertxVersion")
   
...