Maven Integration

To use TableTools in your project, add the following to your POM to enable the TableTools repository and add TableTools libraries as dependencies:

<project ...>

        ...

        <dependencies>
                ...
                <!--
                  The 'tabletools' artifact declares dependencies to
                  net.sf.tabletools:collections, and to a driver for MySQL,
                  HSQLdb and Derby. The artifact is otherwise empty, and
                  thus may be replaced if not all database drivers are
                  required.
                -->
                <dependency>
                        <groupId>net.sf.tabletools</groupId>
                        <artifactId>tabletools</artifactId>
                        <version>0.0.10</version>
                </dependency>
        </dependencies>
        <repositories>
                <repository> 
                        <id>tabletools.sourceforge.net</id>
                        <name>tabletools</name>
                        <url>http://downloads.sourceforge.net/project/tabletools/m2repo</url>
                </repository>
        </repositories>

See here for instructions on schema generation.