I'm making a Minecraft mod in Itellij that relies on org.lwjgl.input code. That library was removed from LWJGL 3, so I have to use LWJGL 2 instead. I added the correct LWJGL 2 jar files to my dependencies and libraries and no errors show in my code. However, when I compile, I get this error:
error: package org.lwjgl.input does not exist
import org.lwjgl.input.Keyboard;
I already tried rebuilding, cleaning, deleting the .idea folder, invalidating the cache, and deleting all of the LWJGL 3 libraries. Am I missing a step?