forked from Interrupt/delverengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (54 loc) · 1.74 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
version = '1.4.0'
ext {
appName = "delver"
gdxVersion = '1.9.9'
roboVMVersion = '2.3.9'
kryoVersion = '2.24.0'
reflectionsVersion = '0.9.12'
inkVersion = '0.7.3'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
}
project(":DungeoneerDesktop") {
apply plugin: "java-library"
dependencies {
implementation project(":Dungeoneer")
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
api "com.badlogicgames.gdx:gdx-controllers-desktop:$gdxVersion"
api "com.badlogicgames.gdx:gdx-controllers-platform:$gdxVersion:natives-desktop"
}
}
project(":DelvEdit") {
apply plugin: "java-library"
dependencies {
implementation project(":Dungeoneer")
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
api "org.reflections:reflections:$reflectionsVersion"
}
}
project(":Dungeoneer") {
apply plugin: "java-library"
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
api "com.esotericsoftware.kryo:kryo:$kryoVersion"
api "com.bladecoder.ink:blade-ink:1.0.0"
}
}