Gruppe-02-clone/Projekte/battleship/server/build.gradle

15 lines
277 B
Groovy
Raw Permalink Normal View History

2024-10-05 11:58:12 +02:00
plugins {
id 'buildlogic.java-application-conventions'
}
description = 'Battleship Server'
dependencies {
implementation project(":battleship:model")
}
application {
mainClass = 'pp.battleship.server.BattleshipServer'
applicationName = 'battleship-server'
}