oppdaterer frontend-setup + mappenavn

Co-authored-by: Amalie Erdal Mansaker <amalie.erdal.mansaker@nav.no>
Co-authored-by: Markus A. R. Johansen <markus.aleksander.rakil.johansen@nav.no>
This commit is contained in:
sindrekjelsrud 2023-06-28 15:44:58 +02:00
parent f214f16780
commit ff95d772fa
28 changed files with 234 additions and 4240 deletions

27
backend/build.gradle.kts Normal file
View file

@ -0,0 +1,27 @@
plugins {
kotlin("jvm") version "1.8.21"
application
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(11)
}
application {
mainClass.set("MainKt")
}