Installing Lemur v1.14.0

I’ve downloaded lemur-1.14.0-sources.jar java archive off GitHub :partying_face:

This is the first time I’ve done something like this, and I’m not sure what to do now.

  1. Was I supposed to download some other file as well?
  2. What do I do with the file now that I have it?
  3. How do I do I implement Lemur stuff into my program?
  4. And finally, where can I find some coding tutorials on Lemur?
1 Like

This would be applied if it’s ANT if you are using jar files , otherwise gradle dependencies are found on Lemur git.

So I need to also download Guava, slf4j, and Groovy?

1 Like

Yep.

Since , Lemur code uses classes of guava (they are google core libraries for java , ie google java utilities), Groovy for styling , slf4j then you must add them as dependencies or jar files so that their code would be accessible via Lemur.

Notice : if you donot add them , you will get java.lang.UnSatisfiedLinkErrorException or java.lang.ClassNotFoundException or java.lang.NoClassDefFoundError

Edit: and some examples here:

And some actual game/tools/etc. examples all over the place here:

Complicated UI example here:

2 Likes