Move .jar deps to Ivy dependency file
colonelpopcorn opened this issue · comments
Jonathan Ling commented
It's not best practice to have binary files checked into source control. Consider adding Ivy dependencies to this project to be included during the Ant build process instead of the .jar files in the lib directory:
https://ant.apache.org/ivy/history/2.5.0/tutorial/start.html
xnbox commented
Thanks for the tip!
I will try to use Ivy.
I'll have to check that all the dependencies are in the maven repository.
But I also want to be able to do the JAR build offline as well.
Maybe you can help with some advice?
Jonathan Ling commented
Ivy creates a cache directory by default so you can build offline after downloading once.
xnbox commented
Thank you very much!
I'll try it!