mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-25 12:49:45 +01:00
17 lines
305 B
Groovy
17 lines
305 B
Groovy
plugins {
|
|
id 'buildlogic.jme-application-conventions'
|
|
}
|
|
|
|
description = 'Battleship converter for resources'
|
|
|
|
dependencies {
|
|
implementation libs.jme3.core
|
|
|
|
runtimeOnly libs.jme3.desktop
|
|
runtimeOnly libs.jme3.plugins
|
|
}
|
|
|
|
application {
|
|
mainClass = 'pp.battleship.exporter.ModelExporter'
|
|
}
|