-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
40 lines (31 loc) · 1.1 KB
/
build.gradle.kts
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
plugins {
application
`java-library`
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
api("org.apache.commons:commons-math3:3.6.1")
implementation("org.apache.commons:commons-text:1.9")
implementation("com.github.stewsters:stewsters-util:0.19")
implementation("com.google.guava:guava:30.0-jre")
implementation("com.google.code.gson:gson:2.8.6")
implementation("commons-io:commons-io:2.8.0")
implementation("org.hexworks.zircon:zircon.core-jvm:2021.1.0-RELEASE")
implementation("org.hexworks.zircon:zircon.jvm.swing:2021.1.0-RELEASE")
implementation("org.hexworks.zircon:zircon.jvm.libgdx:2021.1.0-RELEASE")
// Use JUnit test framework
// For SOME reason it's required to be on the regular compile classpath, not sure why
implementation("junit:junit:4.13")
testImplementation("junit:junit:4.13")
}
application {
mainClassName = "com.zygon.rl.game.example.BloodRLMain"
}