add build.gradle
This commit is contained in:
parent
3b1cd2e1ca
commit
26a8928a12
26
build.gradle
Normal file
26
build.gradle
Normal file
|
@ -0,0 +1,26 @@
|
|||
apply plugin: "java"
|
||||
apply plugin: "maven"
|
||||
apply plugin: "eclipse"
|
||||
apply plugin: "idea"
|
||||
|
||||
group = "com.blarg.gdx"
|
||||
version = "0.1-SNAPSHOT"
|
||||
ext.appName = "gdx-tilemap3d"
|
||||
ext.gdxVersion = "0.9.9"
|
||||
|
||||
sourceCompatibility = 1.6
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url "http://oss.sonatype.org/content/repositories/releases/" }
|
||||
mavenLocal()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
||||
compile "com.blarg.gdx:gdx-toolbox:0.1-SNAPSHOT"
|
||||
}
|
||||
|
||||
eclipse.project {
|
||||
name = appName
|
||||
}
|
Loading…
Reference in a new issue