18 lines
546 B
Groovy
18 lines
546 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":models") // We need this dependency for serializing persons to JSON
|
|
implementation project(":services") // We'll make use of the InMemoryPersonReader soon
|
|
|
|
implementation libs.javalin // Pulling in Javalin
|
|
implementation libs.jackson // For JSON serialization of persons
|
|
implementation libs.slf4j // To see some Javalin logging
|
|
}
|
|
|
|
application {
|
|
mainClass = "de.thpeetz.kontor.api.Main"
|
|
mainModule = "de.thpeetz.kontor.api"
|
|
}
|