SHARE
TWEET
Untitled
a guest
Sep 17th, 2014
195
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- buildscript {
- repositories {
- mavenCentral()
- mavenLocal()
- maven { url 'https://github.com/steffenschaefer/gwt-gradle-plugin/raw/maven-repo/' }
- }
- dependencies {
- classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.4'
- classpath 'com.android.tools.build:gradle:0.10+'
- classpath 'com.github.jtakakura:gradle-robovm-plugin:0.0.9'
- classpath 'net.sf.proguard:proguard-gradle:4.11'
- }
- }
- allprojects {
- apply plugin: "eclipse"
- apply plugin: "idea"
- version = '1.0'
- ext {
- appName = 'Gravv'
- gdxVersion = '1.3.2-SNAPSHOT'
- roboVMVersion = '1.0.0-SNAPSHOT'
- gdxUtilsVersion = '0.3.5-SNAPSHOT'
- artemisVersion = '0.6.6-SNAPSHOT'
- b2dlightsVersion = '1.3-SNAPSHOT'
- artemisContribVersion = artemisVersion
- }
- repositories {
- mavenLocal()
- mavenCentral()
- //maven { url "http://repo1.maven.org/maven2/net/onedaybeard/artemis/artemis-odb/$artemisVersion/" }
- //maven { url "http://repo1.maven.org/maven2/net/onedaybeard/artemis/artemis-odb-cli/0.6.5/" }
- maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
- //maven { url "https://oss.sonatype.org/content/repositories/releases/" }
- //maven { url "https://oss.sonatype.org/content/groups/public/" }
- //maven { url "https://oss.sonatype.org/content/groups/staging/" }
- }
- }
- project(":desktop") {
- apply plugin: "java"
- dependencies {
- compile project(":core")
- compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
- compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
- //compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
- compile "com.badlogicgames.gdx:gdx-tools:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-controllers-desktop:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-controllers-platform:$gdxVersion:natives-desktop"
- }
- }
- project(":android") {
- apply plugin: "android"
- configurations { natives }
- dependencies {
- compile project(":core")
- compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
- compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
- compile "com.badlogicgames.box2dlights:box2dlights:$b2dlightsVersion"
- //compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
- //natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi"
- //natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
- //natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
- compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion"
- }
- }
- project(":ios") {
- apply plugin: "java"
- apply plugin: "robovm"
- configurations { natives }
- dependencies {
- compile project(":core")
- compile "org.robovm:robovm-rt:${roboVMVersion}"
- compile "org.robovm:robovm-cocoatouch:${roboVMVersion}"
- compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-ios"
- //natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-ios"
- }
- }
- project(":html") {
- apply plugin: "gwt"
- apply plugin: "war"
- dependencies {
- compile project(":core")
- compile fileTree(dir: 'libs', include: '*.jar')
- compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources"
- compile "com.badlogicgames.box2dlights:box2dlights:$b2dlightsVersion:sources"
- compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-ai:$gdxVersion:sources"
- compile "net.dermetfan.libgdx-utils:libgdx-utils:$gdxUtilsVersion:sources"
- compile "net.dermetfan.libgdx-utils:libgdx-utils-box2d:$gdxUtilsVersion:sources"
- compile "net.onedaybeard.artemis:artemis-odb-gwt:$artemisVersion"
- compile "net.onedaybeard.artemis:artemis-odb-gwt:$artemisVersion:sources"
- compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion:sources"
- compile 'com.google.gwt:gwt-user:2.6.0'
- compile 'com.google.gwt:gwt-user:2.6.0:sources'
- }
- }
- project(":core") {
- apply plugin: "java"
- dependencies {
- compile fileTree(dir: '../libs', include: '*.jar')
- compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion"
- //compile "net.onedaybeard.artemis:artemis-odb-cli:$artemisVersion"
- compile "com.badlogicgames.gdx:gdx:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
- compile "com.badlogicgames.box2dlights:box2dlights:$b2dlightsVersion"
- //compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-ai:$gdxVersion"
- compile "net.dermetfan.libgdx-utils:libgdx-utils:$gdxUtilsVersion"
- compile "net.dermetfan.libgdx-utils:libgdx-utils-box2d:$gdxUtilsVersion"
- compile "net.sf.proguard:proguard-gradle:4.11"
- compile "net.mostlyoriginal.artemis-odb:contrib-core:$artemisContribVersion"
- compile "net.mostlyoriginal.artemis-odb:contrib-components:$artemisContribVersion"
- compile "net.mostlyoriginal.artemis-odb:contrib-components-libgdx:$artemisContribVersion"
- compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:$artemisContribVersion"
- }
- }
- tasks.eclipse.doLast { delete ".project" }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
