mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-25 09:19:45 +01:00
15 lines
363 B
Groovy
15 lines
363 B
Groovy
plugins {
|
|
id 'buildlogic.java-library-conventions'
|
|
}
|
|
|
|
description = 'Monopoly common model'
|
|
|
|
dependencies {
|
|
api project(":common")
|
|
api libs.jme3.networking
|
|
testImplementation libs.mockito.core
|
|
|
|
testImplementation project(":monopoly:client")
|
|
testImplementation project(":monopoly:model")
|
|
testImplementation project(":monopoly:server")
|
|
} |