-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdependencies.gradle
29 lines (24 loc) · 1.24 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
// Add your dependencies here
configurations {
shadowSources
}
dependencies {
shadowImplementation("it.unimi.dsi:fastutil:8.5.15") // Apache 2.0
shadowImplementation("org.joml:joml:1.10.8") { transitive = false } // MIT
shadowSources("it.unimi.dsi:fastutil:8.5.15:sources")
shadowSources("org.joml:joml:1.10.8:sources") { transitive = false }
testImplementation(platform("org.junit:junit-bom:5.11.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
because("Only needed to run tests in a version of IntelliJ IDEA that bundles older versions")
}
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
compileOnly("com.github.GTNewHorizons:lwjgl3ify:2.1.6") { transitive = false }
compileOnly("com.gtnewhorizons.retrofuturabootstrap:RetroFuturaBootstrap:1.0.7") { transitive = false }
compileOnly('org.jetbrains:annotations:26.0.1')
compileOnly("org.projectlombok:lombok:1.18.36") {transitive = false }
annotationProcessor("org.projectlombok:lombok:1.18.36")
// For CapturingTesselator compat
compileOnly("com.falsepattern:falsetweaks-mc1.7.10:3.8.4:api")
}