-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (26 loc) · 901 Bytes
/
Copy pathbuild.gradle
File metadata and controls
35 lines (26 loc) · 901 Bytes
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 12
repositories {
mavenCentral()
maven { url 'https://sparse.blue/maven/' }
}
dependencies {
implementation fileTree("bspsrc.jar")
implementation 'blue.sparse:sparse-binary:+'
implementation "xyz.eutaxy:eutaxy-util:+"
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.joml:joml:1.9.13'
implementation platform("org.lwjgl:lwjgl-bom:3.2.3")
implementation "org.lwjgl:lwjgl"
implementation "org.lwjgl:lwjgl-glfw"
implementation "org.lwjgl:lwjgl-opengl"
implementation 'org.jetbrains:annotations:19.0.0'
runtimeOnly "org.lwjgl:lwjgl::natives-windows"
runtimeOnly "org.lwjgl:lwjgl-glfw::natives-windows"
runtimeOnly "org.lwjgl:lwjgl-opengl::natives-windows"
testCompile group: 'junit', name: 'junit', version: '4.12'
}