forked from fluddokt/opsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
126 lines (106 loc) · 4.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
buildscript {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
google()
}
dependencies {
//noinspection AndroidGradlePluginVersion
classpath 'com.android.tools.build:gradle:7.0.0'
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
version = '1.0' // what's this?
repositories {
mavenLocal()
mavenCentral()
google()
gradlePluginPortal()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://jitpack.io" }
}
eclipse {
classpath {
downloadJavadoc = true
}
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
project(":desktop") {
apply plugin: "java-library"
dependencies {
implementation project(":core")
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
api "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'org.xerial:sqlite-jdbc:3.15.1'
}
}
// Should mirror project(":desktop") but use lwjgl3 instead
project(":desktopLwjgl3") {
apply plugin: "java-library"
dependencies {
implementation project(":core")
api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
api "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'org.xerial:sqlite-jdbc:3.15.1'
}
}
project(":android") {
apply plugin: "com.android.application"
configurations { natives }
dependencies {
implementation project(":core")
api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86_64"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'org.sqldroid:sqldroid:1.0.3'
}
}
project(":core") {
apply plugin: "java-library"
dependencies {
implementation project(":jlayer")
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'org.jcraft:jorbis:0.0.17'
implementation 'net.lingala.zip4j:zip4j:2.11.2'
// implementation 'org.json:json:20160810'
implementation 'org.json:json:20220924' // revert it if something was broken after bumping
implementation 'org.tukaani:xz:1.6'
implementation 'org.jetbrains:annotations:23.1.0'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
// fft depends on this. todo:remove
implementation "pl.edu.icm:JLargeArrays:1.6"
//implementation "space.earlygrey:shapedrawer:$shapedrawerVersion"
//implementation project(":shapedrawer") // not now
//todo: store jar locally
//api files('libs/shapedrawer-1.0.jar')
}
}
project(":jlayer") {
apply plugin: "java-library"
}
tasks.eclipse.doLast {
delete ".project"
}