72 lines
1.7 KiB
Groovy
72 lines
1.7 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.0.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: "eclipse"
|
|
apply plugin: "idea"
|
|
|
|
version = '1.0'
|
|
ext {
|
|
appName = 'CannonShooter'
|
|
gdxVersion = '1.5.5'
|
|
roboVMVersion = '1.0.0'
|
|
box2DLightsVersion = '1.3'
|
|
ashleyVersion = '1.3.1'
|
|
aiVersion = '1.5.0'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
|
flatDir {
|
|
dirs '../lib'
|
|
}
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|
|
|
|
project(":core") {
|
|
apply plugin: "java"
|
|
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
compile name: 'absGDX-framework-1.0'
|
|
}
|
|
}
|
|
|
|
tasks.eclipse.doLast {
|
|
delete ".project"
|
|
} |