-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 1.31 KB
/
build.gradle
File metadata and controls
44 lines (36 loc) · 1.31 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
38
39
40
41
42
43
44
repositories {
mavenLocal()
mavenCentral()
google()
gradlePluginPortal()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
apply plugin: 'java-library'
group = 'ru.jending'
version = '0.1'
targetCompatibility = 1.17
sourceCompatibility = 1.17
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
ext {
gdxVersion = '1.10.0'
box2DLightsVersion = '1.5'
ashleyVersion = '1.7.3'
aiVersion = '1.8.2'
}
dependencies {
compileOnly "com.badlogicgames.gdx:gdx:$gdxVersion"
compileOnly "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
compileOnly "com.badlogicgames.box2dlights:box2dlights:$box2DLightsVersion"
compileOnly "com.badlogicgames.ashley:ashley:$ashleyVersion"
compileOnly "com.badlogicgames.gdx:gdx-ai:$aiVersion"
testImplementation "com.badlogicgames.gdx:gdx:$gdxVersion"
testImplementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
testImplementation "com.badlogicgames.box2dlights:box2dlights:$box2DLightsVersion"
testImplementation "com.badlogicgames.ashley:ashley:$ashleyVersion"
testImplementation "com.badlogicgames.gdx:gdx-ai:$aiVersion"
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
}
test {
useJUnitPlatform()
}