Files
HyperLap2D/plugin-9patch/build.gradle
T
fgnm 8adf63dff9 Move Editor to Artemis-based runtime:
* Epic artemis switch!
* Update to 0.0.8-SNAPSHOT
2021-08-07 18:07:09 +02:00

39 lines
987 B
Groovy

plugins {
id 'java'
}
group 'games.rednblack'
version '0.0.8'
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.kotcrab.vis:vis-ui:$visuiVersion"
implementation "net.onedaybeard.artemis:artemis-odb:$artemisVersion"
implementation 'net.mountainblade:modular:1.0'
implementation project(":hyperlap2d-common-api")
implementation project(":hyperlap2d-runtime-libgdx")
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
task dist(type: Jar) {
from files(sourceSets.main.output.classesDirs)
from files(sourceSets.main.output.resourcesDir)
destinationDirectory = file("../build/lib/plugins")
doLast {
def jarToCopy = archiveFileName.get()
copy {
from "../build/lib/plugins/$jarToCopy"
into "../assets/plugins"
}
}
}