Programming
EN
How to build H2 database engine yourself and install it in your local Maven repository
[]
A Web Developer's Diary - Blog
If you ever find the need to compile H2 database yourself to install it in your local Maven repository, here are the steps:
svn checkout http://h2database.googlecode.com/svn/trunk/ h2database-read-only cd h2database-read-only/h2 ./build.sh mavenInstallLocal
Your custom H2 build is now installed in your local Maven repository as version 1.0-SNAPSHOT. Include it as a dependency in your project by adding the appropriate XML to your pom.xml:
<project> ... <dependencies> [...]