forked from Dungeon-CampusMinden/Dungeon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
37 lines (31 loc) · 1.59 KB
/
dependencies.gradle
File metadata and controls
37 lines (31 loc) · 1.59 KB
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
ext {
// -- PLUGINS
spotlessVersion = '8.1.0'
// -- DEPENDENCIES
gdxVersion = '1.12.1'
aiVersion = '1.8.2'
junitVersion = '6.0.1'
junitLauncherVersion = '6.0.1'
mockitoVersion = '5.21.0'
antlrVersion = '4.13.2'
// -- NETWORK / SERVER
nettyVersion = '4.2.9.Final'
supportDependencies = [
// LibGDX
gdx : "com.badlogicgames.gdx:gdx:$gdxVersion",
gdx_platform : "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop",
gdx_backend_lwjgl3 : "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion",
gdx_lwjgl3_glfw_awt_macos : "com.badlogicgames.gdx:gdx-lwjgl3-glfw-awt-macos:$gdxVersion",
gdx_ai : "com.badlogicgames.gdx:gdx-ai:$aiVersion",
gdx_freetype : "com.badlogicgames.gdx:gdx-freetype:$gdxVersion",
gdx_freetype_platform : "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop",
gdx_backend_headless : "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion",
// JUnit and Mockito for testing
junit : "org.junit.jupiter:junit-jupiter:$junitVersion",
junitLauncher : "org.junit.platform:junit-platform-launcher:$junitLauncherVersion",
mockito_core : "org.mockito:mockito-core:$mockitoVersion",
// ANTLR version 4 for DSL Grammar
antlr : "org.antlr:antlr4:$antlrVersion",
// Netty for multiplayer logic
netty_all : "io.netty:netty-all:$nettyVersion",]
}