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