mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-24 23:59:44 +01:00
15 lines
279 B
Groovy
15 lines
279 B
Groovy
|
plugins {
|
||
|
id 'buildlogic.java-library-conventions'
|
||
|
}
|
||
|
|
||
|
description = 'Common classes used in jME applications'
|
||
|
|
||
|
dependencies {
|
||
|
implementation libs.jme3.core
|
||
|
api libs.lemur
|
||
|
api project(':common')
|
||
|
|
||
|
runtimeOnly libs.groovy.jsr223
|
||
|
runtimeOnly libs.slf4j.nop
|
||
|
}
|