Hi Karen,
Are you using Maven for your own project? If so, you should have a POM file in your project's root, which is just an XML file.
(or other packages) should go under <dependendies>...</dependencies> (line 12). Maven will then automatically
retrieve all necessary JARs (also of transitive dependencies).
If you are not using Maven yourself (or a compatible build tool like Ant, Gradle or SBT) you need to manually add the JARs.
In this case, do not forget to also include the SLF4J jar as explained in the instructions.
If you insist on building from source please be aware that the master branch of the repos always contains the latest
development version, not a stable release. If you want a specific release version, after cloning the repo, you need to
check out that version, e.g.
$ git checkout v1.2
before building the project. You should be able to build release versions of individual modules without cloning the
entire parent project nor any other modules (because the missing parts are retrieved from the Central Repository).
Herman
Op maandag 13 maart 2017 09:08:36 UTC+1 schreef Karen Hilgert: