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

13 lines
242 B
Groovy
Raw Permalink Normal View History

2024-10-05 11:58:12 +02:00
plugins {
id 'buildlogic.java-library-conventions'
}
description = 'Battleship common model'
dependencies {
api project(":common")
api libs.jme3.networking
implementation libs.gson
testImplementation libs.mockito.core
}