chrismoe92
chrismoe92

Reputation: 3

Using a java library containing no class file

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

Answers (1)

Filippo Fratoni
Filippo Fratoni

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

Related Questions