Reputation: 5039
I want to use the following github project as a compiled one to be referenced by my own eclipse project (java):
https://github.com/HaraldWalker/user-agent-utils
I don't use Maven. How do I reference this github project so I can use its libraries in my own project? Does it have to be turned into a JAR or is there some other way.
Thank you very much for any help.
Upvotes: 1
Views: 386
Reputation: 27735
If the project is already on Maven Central or Bintray then you can download the jar from there.
Otherwise you can use jitpack.io to build the jar for you.
Upvotes: 1
Reputation: 547
If you don't use maven, you may want to download the sources (git checkout), compile them into a jar, and add the jar in your project's build path.
Read: How to make a jar
Upvotes: 0