aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-01-27 19:43:42 +0300
committerGravatar Vitaly Takmazov2023-01-27 20:33:17 +0300
commitc2fe259c1dc558945ea8beb82cdfe5891791564c (patch)
tree148273d483428d0d9caf03e83267cbcc7cbd653d /pom.xml
parent2db415ce42fb96059b6d7fce4cf4ce078a62680e (diff)
db: initial SQL Server schema
* only schema is worked
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml15
1 files changed, 8 insertions, 7 deletions
diff --git a/pom.xml b/pom.xml
index 60f13edf..e3fc8e27 100644
--- a/pom.xml
+++ b/pom.xml
@@ -293,14 +293,15 @@
<type>pom</type>
<scope>runtime</scope>
</dependency>
- <dependency>
- <groupId>org.xerial</groupId>
- <artifactId>sqlite-jdbc</artifactId>
- <version>3.40.0.0</version>
- </dependency>
<dependency>
- <groupId>org.flywaydb</groupId>
- <artifactId>flyway-mysql</artifactId>
+ <groupId>org.xerial</groupId>
+ <artifactId>sqlite-jdbc</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.sqlserver</groupId>
+ <artifactId>mssql-jdbc</artifactId>
+ <scope>runtime</scope>
</dependency>
</dependencies>
<build>