cd <hsqldbDIR>/lib java -cp hsqldb.jar org.hsqldb.Server -database.0 mavenhist -dbname.0 historisation
<repositories> <repository> <id>sourceforge-m2-releases</id> <url>http://maven-hist.sourceforge.net/m2repo</url> </repository> </repositories>
If you want to use the historisation functionality in your own project you have to use maven (1 or 2) to build your system. It's very simple to include the plugin in maven 1 and 2.
<project> <build> <plugins> <plugin> <groupId>net.sf.mavenhist.maven2</groupId> <artifactId>maven-historisation-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <phase>site</phase> <goals> <goal>historisation</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>net.sf.mavenhist.persistency</groupId> <artifactId>hsqldb</artifactId> <version>1.0.0</version> </dependency> </dependencies> <configuration> <dbUser>sa</dbUser> <dbPassword></dbPassword> <dbURL>jdbc:hsqldb:hsql://localhost/</dbURL> <extractorNames> fbviolations,fbfiles,coberturabrpc,csall,csfiles,javancssfunctionstotal,javancsspackagestotal,javancssncsstotal,jncssfunctionsperpackage,javancssccn,pmdfiles,pmdviolations,coberturaloc,coberturalipc,javancssclassestotal,csinfos,javancssjavadocstotal </extractorNames> </configuration> </plugin> </plugins> </build> </project>