xnbox / tommy

Tommy is Apache Tomcat, bundled as a single executable jar.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Move .jar deps to Ivy dependency file

colonelpopcorn opened this issue · comments

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

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?

Ivy creates a cache directory by default so you can build offline after downloading once.

commented

Thank you very much!
I'll try it!