Actual fix - why is doing things before gradle resolves dependencies so complicated?

This commit is contained in:
JacksonAbney
2025-04-26 13:15:51 -08:00
parent 25a7f1d39c
commit f9a7d8aead

View File

@@ -14,7 +14,7 @@ apply plugin: "java"
jarJar.enable()
gradle.projectsEvaluated {
configurations.first().incoming.beforeResolve {
project.configurations.named("jarJar") {
def nativeLibsDir = file("src/main/resources/natives")
// native networking library
def nativeNetworkingBaseUrl = "https://github.com/${native_networking_repo}/releases/download/${network_lib_version}/"