LWJGL missing EGL .dll

I hope someone here can help me with this. I just tried to add EGL to my game (for shared contexts), and it can't find the egl .dll file. Build.gradle:
val lwjglVersion = "3.3.3"
val jomlVersion = "1.10.7"

val lwjglNatives = ...

dependencies {
    api("org.joml:joml:1.10.5")

    implementation(platform("org.lwjgl:lwjgl-bom:$lwjglVersion"))

    implementation("org.lwjgl", "lwjgl")
    implementation("org.lwjgl", "lwjgl-egl")
    implementation("org.lwjgl", "lwjgl-glfw")
    implementation("org.lwjgl", "lwjgl-opengl")
    runtimeOnly("org.lwjgl", "lwjgl", classifier = lwjglNatives)
    runtimeOnly("org.lwjgl", "lwjgl-glfw", classifier = lwjglNatives)
    runtimeOnly("org.lwjgl", "lwjgl-opengl", classifier = lwjglNatives)
    implementation("org.joml", "joml", jomlVersion)

    api(project(":glwt"))
    api(project("builder"))
}

If I try adding
runtimeOnly("org.lwjgl", "lwjgl-egl", classifier = lwjglNatives)
gradle can't find it? Please help, been struggling with this for an hour.
Was this page helpful?