-
Make sure that you have Apache Ant installed. Run each ant command in the tictactoe folder, which contains the
build.xmlbuild file. -
Run
ant documentto generate the javadoc (a hypertext description) for all of the java classes. Generated hypertext description will be in thejdocfolder. Open theindex.htmlfile. -
Run
ant compileto compile all of the java classes. Compiled classes will be in thebinfolder. -
Run
ant testto run all unit tests.
- After building the project (i.e., running
ant), run the following command in the tictactoe folder:java -cp bin RowGameApp
- Run
ant cleanto clean the project (i.e., delete all generated files).