From the "book cdi app" I learnt that the application creates h2 database by these properties..
<bean id="processEngineConfiguration" class="org.activiti.cdi.CdiJtaProcessEngineConfiguration">
<property name="dataSourceJndiName" value="java:jboss/datasources/ExampleDS" />
<property name="databaseType" value="h2" />
Someone can tel me how to create a new DB of type h2 for my own application and what will be the schema?