-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
45 lines (38 loc) · 1021 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
buildscript {
repositories {
mavenCentral()
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
group 'aurelienribon'
version = '4.0'
ext {
appName = 'gdx-texturepacker-ui'
gdxVersion = '1.9.3'
}
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://oss.sonatype.org/content/repositories/releases/' }
}
}
project(':app') {
apply plugin: 'java'
dependencies {
compile project(':swing-css')
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-tools:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
compile 'commons-io:commons-io:2.5'
compile fileTree(dir: './libs', include: '*.jar')
}
}
project(':swing-css') {
apply plugin: 'java'
}
tasks.eclipse.doLast {
delete ".project"
}