in memory dbs config (#1551)

* in memory dbs config

* small fix
This commit is contained in:
lor6
2017-04-03 04:53:22 +03:00
committed by KevinGilmore
parent 44e63c68f2
commit 77d270a4b1
10 changed files with 118 additions and 5 deletions
+21 -1
View File
@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.1.RELEASE</version>
<version>1.5.2.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
@@ -41,6 +41,26 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<!--
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>${hsqldb.version}</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>${derby.version}</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${sqlite.version}</version>
</dependency>
-->
<dependency>
<groupId>org.springframework.boot</groupId>