-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdependencies.gradle
28 lines (23 loc) · 1.12 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
// Add your dependencies here
configurations {
shadowSources
}
dependencies {
shadowImplementation("it.unimi.dsi:fastutil:8.5.12") // Apache 2.0
shadowImplementation("org.joml:joml:1.10.5") // MIT
shadowSources("it.unimi.dsi:fastutil:8.5.12:sources")
shadowSources("org.joml:joml:1.10.5:sources")
testImplementation(platform("org.junit:junit-bom:5.9.2"))
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.gtnewhorizons.retrofuturabootstrap:RetroFuturaBootstrap:0.4.0") { transitive = false }
compileOnly('org.jetbrains:annotations:24.0.1')
compileOnly("org.projectlombok:lombok:1.18.22") {transitive = false }
annotationProcessor("org.projectlombok:lombok:1.18.22")
// For CapturingTesselator compat
compileOnly("com.falsepattern:falsetweaks-mc1.7.10:3.3.2:api")
}