Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should libraries (jar) go into the repository?

When you start to use a third party library in Java, you add their jars to your project. Do you also add the jars to the repository or do you just keep a local installation. And if the latter, how do you sync between team members to be able to work?

Thanks.

like image 364
pupeno Avatar asked Mar 02 '09 17:03

pupeno


1 Answers

Yes. You should add to the repository whatever is required for a developer on a clean system (aside from having the JDK and ant installed) to check out and build the project.

like image 59
Eric Asberry Avatar answered Oct 02 '22 18:10

Eric Asberry