All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin-server.libraries.javalin6.build.gradle.kts.mustache Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
plugins {
    kotlin("jvm") version "2.0.21"
}

group = "{{groupId}}"
version = "{{artifactVersion}}"

kotlin {
    jvmToolchain(21)
}

java {
    toolchain {
        languageVersion.set(JavaLanguageVersion.of(21))
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation("io.javalin:javalin:6.1.6")
    implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
    implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.17.1")
    implementation("org.slf4j:slf4j-simple:2.0.13")

    testImplementation("org.jetbrains.kotlin:kotlin-test")
}

tasks.test {
    useJUnitPlatform()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy