summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-12-10 11:29:42 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2014-12-10 11:29:42 +0100
commitd5f62f16d56ba549376c7ed06665e308bf8074ff (patch)
tree77ea5577567bdcee944fea6f2f3285db9b2724c4 /build.gradle
parentd2a9e9d0f5dd0510daa1c344fe1676d4d1a6f868 (diff)
downloadRustAndDust-d5f62f16d56ba549376c7ed06665e308bf8074ff.zip
RustAndDust-d5f62f16d56ba549376c7ed06665e308bf8074ff.tar.gz
data -> assets: use TexturePacker instead of packer plugin
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle17
1 files changed, 4 insertions, 13 deletions
diff --git a/build.gradle b/build.gradle
index 696cbb0..4d9d7cc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -7,14 +7,12 @@ buildscript {
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.5'
classpath 'com.android.tools.build:gradle:0.10+'
classpath 'com.github.jtakakura:gradle-robovm-plugin:0.0.10'
- classpath 'com.eowise:packer:0.5.0'
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
- apply plugin: 'packer'
version = '1.0'
ext {
@@ -33,17 +31,6 @@ allprojects {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
-
- task packs(type: com.eowise.packer.Packer) {
- resourcesInputPath 'data/assets'
- atlasesOutputPath 'android/assets/data/'
- atlases {
- add 'hud'
- add 'units'
- add 'unit-overlays'
- add 'hex-overlays'
- }
- }
}
project(":desktop") {
@@ -107,6 +94,10 @@ project(":html") {
}
}
+project(":assets") {
+ configurations { texturePacker }
+}
+
project(":core") {
apply plugin: "java"