If you already have a copy of the Matrix framework that is suitable for this version of MatrixPro, you can download this type of release. If you have the matrix.jar file in the same directory as matrixpro.jar, you can start it by typing:
java -jar matrixpro.jarIn general, you can start it by typing:
java -classpath <path-of-matrix.jar>:matrixpro.jar matrixpro.ui.MainFrame <configuration-file>Substitute the path of the matrix.jar file for <path-of-matrix.jar> and the path and filename of the configuration file for <configuration-file>. You can get the configuration file from the download page.
The source release does not contain the Matrix framework. To be able to compile the system, you should download an appropriate version of Matrix. By default, the MatrixPro lib directory is expected to contain matrix.jar. The source release of MatrixPro is available as a gzipped TAR or as a ZIP file. To build MatrixPro you should have Apache Ant installed. The build file (build.xml) contains the following targets:
The important directories are:
<property name="matrix.jar" value="\${lib.dir}/matrix.jar"/>If you don't have Ant and you don't want to install it, you can try the following in the MatrixPro root directory (in Unix):
javac -classpath src:lib/matrix.jar src/*/*/*.java src/*/*/*/*.java java -classpath src:lib/matrix.jar matrixpro.ui.MainFrameWindows users should change the colons in the above commands to semicolons and the slashes to backslashes.