-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathdependencies.gradle
31 lines (27 loc) · 1.34 KB
/
dependencies.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
ext {
// -- PLUGINS
spotlessVersion = '7.0.2'
// -- DEPENDENCIES
gdxVersion = '1.12.1'
aiVersion = '1.8.2'
junitVersion = '5.11.4'
junitLauncherVersion = '1.11.4'
mockitoVersion = '5.15.2'
antlrVersion = '4.13.2'
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",
// 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",
]
}