Files
HyperLap2D/plugin-9patch/build.gradle
T
2020-06-30 21:25:23 +02:00

36 lines
869 B
Groovy

plugins {
id 'java'
}
group 'games.rednblack'
version '0.0.1'
ext {
gdxVersion = '1.9.10'
box2DLightsVersion = '1.5'
ashleyVersion = '1.7.3'
visUIVersion = '1.4.5-SNAPSHOT'
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.ashley:ashley:$ashleyVersion"
implementation "com.kotcrab.vis:vis-ui:$visUIVersion"
implementation 'net.mountainblade:modular:1.0'
implementation project(":hyperlap2d-common-api")
implementation project(":hyperlap2d-runtime-libgdx")
testCompile group: 'junit', name: 'junit', version: '4.12'
}
task dist(type: Jar) {
from files(sourceSets.main.output.classesDirs)
from files(sourceSets.main.output.resourcesDir)
}