forked from UnderwaterApps/overlap2d-runtime-libgdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (25 loc) · 813 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
apply plugin: "java"
apply from : 'publish.gradle'
sourceCompatibility = 1.6
sourceSets.main.java.srcDirs = [ "src/" ]
ext {
gdxVersion = '1.7.1'
box2dlightsVersion = '1.4'
ashleyVersion = '1.6.1-SNAPSHOT'
}
dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
compile "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
compile "com.badlogicgames.ashley:ashley:$ashleyVersion"
}
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}