From be26d198646b28100c0e983af9d8e10545575dbe Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 26 Dec 2025 21:59:17 -0800 Subject: move web frontend to kotlin + javalin --- pom.xml | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 74 insertions(+), 3 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 6860f34..b528cc9 100644 --- a/pom.xml +++ b/pom.xml @@ -12,6 +12,7 @@ UTF-8 + 2.2.0 @@ -44,9 +45,14 @@ 42.7.7 - com.sparkjava - spark-core - 2.9.4 + io.javalin + javalin + 6.7.0 + + + org.slf4j + slf4j-simple + 2.0.16 junit @@ -54,12 +60,77 @@ 3.8.1 test + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-test + ${kotlin.version} + test + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + compile + compile + + compile + + + + src/main/java + target/generated-sources/annotations + + + + + test-compile + test-compile + + test-compile + + + + + 1.8 + + org.apache.maven.plugins maven-compiler-plugin + + + default-compile + none + + + default-testCompile + none + + + compile + compile + + compile + + + + testCompile + test-compile + + testCompile + + + 15 15 -- cgit v1.2.3