2024-09-18 17:04:31 +02:00
|
|
|
plugins {
|
|
|
|
id 'buildlogic.jme-application-conventions'
|
|
|
|
}
|
|
|
|
|
|
|
|
description = 'Battleship Client'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":jme-common")
|
|
|
|
implementation project(":battleship:model")
|
|
|
|
|
|
|
|
implementation libs.jme3.desktop
|
2024-10-14 08:07:57 +02:00
|
|
|
implementation libs.jme3.effects
|
2024-10-13 20:58:18 +02:00
|
|
|
implementation project(path: ':battleship:server')
|
|
|
|
implementation project(path: ':battleship:server')
|
2024-09-18 17:04:31 +02:00
|
|
|
|
|
|
|
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'
|
|
|
|
}
|