mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-25 15:09:43 +01:00
23 lines
485 B
Groovy
23 lines
485 B
Groovy
|
plugins {
|
||
|
id 'buildlogic.jme-application-conventions'
|
||
|
}
|
||
|
|
||
|
description = 'Battleship Client'
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(":jme-common")
|
||
|
implementation project(":battleship: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.battleship.client.BattleshipApp'
|
||
|
applicationName = 'battleship'
|
||
|
}
|