I've got a problem. I am trying to use jme3 with eclipse and Maven. I am using the m2e plugin (with eclipse Oxygen).
Now, I want to add the jme3 dependencies to my pom.xml. I copied the dependency tags from the maven central, from the bintray repository and even from some custom repos (I also added the repositories to the pom). It won't work.
I worked through the first 2 Google search result pages (actually every link on the first two pages) and consulted the maven pom documentation.
I just cannot get this thing to work.
<dependency>
<groupId>org.jmonkeyengine</groupId>
<artifactId>jme3-desktop</artifactId>
<version>3.1.0-stable</version>
</dependency>
This is what my pom looks like now (I resetted it, cuz nothing will work). How do I add this (https://mvnrepository.com/repos/jmonkeyengine) repository to the pom (I must not change anything outside my project directory), so that maven can find the dependency?
I'm sure for some of you this is just a job of a few minutes, but I'm working on this for like 2h now, without any results.
A huge thanks in advance
EDIT: Checked out this solution: JMonkeyEngine in Intellij IDEA
Won't work for (e.g.)
<dependency>
<groupId>org.jmonkeyengine</groupId>
<artifactId>jme3-lwjgl-natives</artifactId>
<version>3.1.0-stable</version>
</dependency>
And many others...