Add 'db' module

This commit is contained in:
Roman Zhuravlev 2023-07-18 02:18:40 +05:00
parent f0a033e370
commit cb3d54c361
10 changed files with 296 additions and 0 deletions

26
db/pom.xml Normal file
View file

@ -0,0 +1,26 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent</artifactId>
<groupId>org.zhdev.varioutil</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>db</artifactId>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.214</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.42.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>