Reputation: 26467
I've got a Java project hosted on github. My project needs few custom .jar
files to be imported. Since I was to be able to run the project anywhere, I want to include jar files inside the git repository. Is there a recommended, conventional place where jar files should be kept, e.g. lib
dir of the root project directory?
PS
At the moment I'm not using Maven and I'm not considering it.
Upvotes: 0
Views: 462
Reputation: 1636
The usual case is actually a lib folder. Or webapp/WEB-INF/lib it is a web application.
But ths usual case is bad. I would not put jars in my source management system. If you need to add references to another project, you might consider having a look a git submodules (though you are using Github).
Upvotes: 1