-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
55 lines (39 loc) · 1.19 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
plugins {
id "org.sonarqube" version "3.0"
}
apply plugin: "java"
apply plugin: "idea"
group = "com.katzstudio"
version = "0.2.0"
compileJava {
sourceCompatibility = 1.8
}
ext {
gdxVersion = "1.9.12"
lombokVersion = "1.16.6"
guavaVersion = "12.0"
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
test {
testLogging {
events "failed"
exceptionFormat "full"
}
}
dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
// Used by the demo to create a native window and context
testCompile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
testCompile "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
testCompile "junit:junit:4.11"
testCompile "pl.pragmatists:JUnitParams:1.0.4"
testCompile "org.mockito:mockito-core:1.+"
testCompile "org.hamcrest:hamcrest-junit:2.0.0.0"
}