2018-11-10 09:24:31 -07:00
|
|
|
buildscript {
|
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
jcenter()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: "eclipse"
|
|
|
|
apply plugin: "idea"
|
|
|
|
|
|
|
|
version = '1.0'
|
|
|
|
ext {
|
|
|
|
appName = "brick-buster"
|
|
|
|
gdxVersion = '1.9.8'
|
|
|
|
roboVMVersion = '2.3.5'
|
|
|
|
box2DLightsVersion = '1.4'
|
|
|
|
ashleyVersion = '1.7.0'
|
|
|
|
aiVersion = '1.8.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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"
|
2018-11-14 10:54:56 -07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
|
2018-11-10 09:24:31 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(":core") {
|
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
2018-11-14 10:54:56 -07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
2018-11-10 09:24:31 -07:00
|
|
|
compile "net.dermetfan.libgdx-utils:libgdx-utils:0.13.4"
|
2018-11-14 10:54:56 -07:00
|
|
|
compile "net.dermetfan.libgdx-utils:libgdx-utils-box2d:0.13.4"
|
2018-11-10 09:24:31 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.eclipse.doLast {
|
|
|
|
delete ".project"
|
|
|
|
}
|