mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-25 20:59:43 +01:00
15 lines
277 B
Groovy
15 lines
277 B
Groovy
|
plugins {
|
||
|
id 'buildlogic.java-application-conventions'
|
||
|
}
|
||
|
|
||
|
description = 'Battleship Server'
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(":battleship:model")
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass = 'pp.battleship.server.BattleshipServer'
|
||
|
applicationName = 'battleship-server'
|
||
|
}
|