generated from hundun000/libgdx-demo-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
123 lines (98 loc) · 3.77 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
buildscript {
ext {
gwtPluginVersion = '1.1.16'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
google()
}
dependencies {
classpath "org.wisepersist:gwt-gradle-plugin:$gwtPluginVersion"
classpath 'org.gretty:gretty:3.0.5'
}
}
allprojects {
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
ext {
appName = 'libgdx-TextUma'
gdxVersion = '1.10.0'
gdxFreeTypeGwtVersion = '1.9.10.1'
gwtFrameworkVersion = '2.8.2'
hundunLibVersion = '55576a2e89'
raeleusStripeVersion = '1.4.1'
}
repositories {
//mavenLocal()
mavenCentral()
maven { url 'https://jitpack.io' }
//google()
//maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
//maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
}
subprojects {
apply plugin: 'java-library'
version = '0.0.1-SNAPSHOT'
}
project(":core") {
dependencies {
api project(':umamusume-simulation')
api "com.github.hundun000:libgdx-hundun-lib:$hundunLibVersion"
api "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
implementation "com.github.raeleus.stripe:freetype:$raeleusStripeVersion"
//implementation 'com.github.hundun000:umamusume-simulation:3a61a316ed'
// from share
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.5'
api group: 'com.github.nmorel.gwtjackson', name: 'gwt-jackson', version: '0.15.4'
compileOnly 'org.projectlombok:lombok:1.18.4'
annotationProcessor 'org.projectlombok:lombok:1.18.4'
}
}
project(":desktop") {
dependencies {
implementation project(':core')
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
}
}
project(":html") {
apply plugin: "gwt"
apply plugin: "war"
apply plugin: "org.gretty"
configurations { lombok }
dependencies {
implementation project(':core')
implementation "com.github.hundun000.libgdx-hundun-lib:corelib:$hundunLibVersion:sources"
implementation "com.github.hundun000.libgdx-hundun-lib:gamelib:$hundunLibVersion:sources"
implementation 'com.crashinvaders.vfx:gdx-vfx-core:0.5.0:sources'
implementation 'com.crashinvaders.vfx:gdx-vfx-gwt:0.5.0'
implementation 'com.crashinvaders.vfx:gdx-vfx-gwt:0.5.0:sources'
api "com.github.crykn:libgdx-screenmanager:0.6.8:sources"
api "com.github.crykn:libgdx-screenmanager-gwt:0.6.8"
api "com.github.crykn:libgdx-screenmanager-gwt:0.6.8:sources"
api "com.github.tommyettinger:formic:0.1.4:sources"
implementation 'com.crashinvaders.vfx:gdx-vfx-core:0.5.0:sources'
implementation 'com.crashinvaders.vfx:gdx-vfx-gwt:0.5.0'
implementation 'com.crashinvaders.vfx:gdx-vfx-gwt:0.5.0:sources'
implementation 'com.crashinvaders.vfx:gdx-vfx-effects:0.5.0:sources'
implementation "com.github.raeleus.stripe:freetype:$raeleusStripeVersion:sources"
implementation "com.github.intrigus.gdx-freetype-gwt:gdx-freetype-gwt:$gdxFreeTypeGwtVersion"
implementation "com.github.intrigus.gdx-freetype-gwt:gdx-freetype-gwt:$gdxFreeTypeGwtVersion:sources"
implementation "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
implementation "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
compileOnly 'org.projectlombok:lombok:1.18.4'
annotationProcessor 'org.projectlombok:lombok:1.18.4'
}
}
eclipse.project.name = ext.appName