MAVEN.md 584 Bytes
Newer Older
1
# H2
2

3
Welcome to H2, the Java SQL database. The main features of H2 are:
4

5 6 7 8 9
* Very fast, open source, JDBC API
* Embedded and server modes; in-memory databases
* Browser based Console application
* Small footprint: around 1.5 MB jar file size

10
## Experimental Building & Testing with Maven
11

12
### Building
13 14 15

H2 uses [Maven Wrapper](https://github.com/takari/maven-wrapper) setup, you can instruct users to run wrapper scripts:

16
> $ ./mvnw clean test
17 18 19

or

20 21
> $ ./mvnw.cmd clean test

22
### Running
23 24 25 26 27 28

You can run the server like this

```
mvn exec:java -Dexec.mainClass=org.h2.tools.Server  
```