I'm using Maven for a project using LWJGL3 version 3.1.5. I used the pom generator on the LWJGL website and IntelliJ tells me the following on line 4:
Dependency 'org.lwjgl:lwjgl:3.1.5' not found
This is the problematic part of my pom.xml:
<dependency>
<groupId>org.lwjgl</groupId>
<artifactId>lwjgl</artifactId>
<version>${lwjgl.version}</version>
</dependency>
How can I fix this?