Reputation: 3
I have downloaded a java library from github, but it only contains java Code files and no class files. I tried to compile it via eclipse, but it doesnt show me the files after the Import. How can I use this program although?
You find the repository here: https://github.com/brianfrankcooper/YCSB
Upvotes: 0
Views: 43
Reputation: 389
If no binaries a supplied you should clone the project locally an run gradle or maven build to install in your local repo. Then add the dependency to your project
Upvotes: 1