Files
Gruppe-01-fin/Projekte/mdga/client/build.gradle
2024-11-12 17:52:39 +01:00

21 lines
412 B
Groovy

plugins {
id 'buildlogic.jme-application-conventions'
}
description = 'mdga client'
dependencies {
implementation project(":mdga:model")
implementation libs.jme3.desktop
runtimeOnly libs.jme3.awt.dialogs
runtimeOnly libs.jme3.plugins
runtimeOnly libs.jme3.jogg
runtimeOnly libs.jme3.testdata
}
application {
mainClass = 'pp.mdga.client.MdgaApp'
applicationName = 'MDGA'
}