0

I want to use this library in my Java project which I run build with sublime text ctrl+b and then java from command line. There are no instruction on how to include this in my project and can't find any simple instructions while searching.

How do I use this library? I'm on OSX.

novalain
  • 2,181
  • 19
  • 36

2 Answers2

0

You can use either of

  1. Download source code and build it as jar package. Add this jar file to your project classpath.

  2. Download source code and add all source files as your project source.

Community
  • 1
  • 1
An Do
  • 309
  • 1
  • 8
0

Best is to do something clean and durable :

  1. install maven (see this article, it takes only 5 minutes!)

  2. init a project .pom file

  3. add the lib dependency , see librairy doc

    uk.com.robust-it cloning 1.9.2

  4. build using maven command :

    maven clean install

  5. enjoy

jeorfevre
  • 2,286
  • 1
  • 17
  • 27