jackson
This commit is contained in:
parent
09f9728e1d
commit
a768347701
2 changed files with 8 additions and 2 deletions
|
@ -39,6 +39,10 @@ dependencies {
|
|||
testImplementation("junit:junit:$junit_version")
|
||||
testImplementation("org.mockito:mockito-all:$mockito_version")
|
||||
testImplementation("org.assertj:assertj-core:$assertj_version")
|
||||
|
||||
implementation("com.fasterxml.jackson.core:jackson-databind:2.7.1-1")
|
||||
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.7.1-2")
|
||||
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.7.1")
|
||||
}
|
||||
|
||||
tasks {
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
package group.ouroboros.potrogue
|
||||
|
||||
|
||||
import group.ouroboros.potrogue.view.StartView
|
||||
import org.hexworks.zircon.api.SwingApplications
|
||||
|
||||
|
||||
//Important Values
|
||||
const val GAME_ID = "PotRogue";
|
||||
const val GAME_VER = "0.1.0-DEV";
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
//Start Application
|
||||
val grid = SwingApplications.startTileGrid(GameConfig.buildAppConfig())
|
||||
StartView(grid).dock()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue