I am not very familiar with Matlab, but it seems your problem is that you are trying to place a large set of binaries under some version control?
If these files are available in Maven Central, you can use the ant2ivy script to create an ivy starter kit . xml and ivysettings.xml .
One of the great features of ivy is that it can work autonomously as follows:
java -jar ivy.jar -retrieve "lib/[artifact].[ext]" -ivy ivy.xml -settings ivysettings.xml
This will load the jars and put them in the "lib" directory (or any other directory that Matlab uses).
Mark o'connor
source share