diff options
author | Vitaly Takmazov | 2023-01-27 19:43:42 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-27 20:33:17 +0300 |
commit | c2fe259c1dc558945ea8beb82cdfe5891791564c (patch) | |
tree | 148273d483428d0d9caf03e83267cbcc7cbd653d /pom.xml | |
parent | 2db415ce42fb96059b6d7fce4cf4ce078a62680e (diff) |
db: initial SQL Server schema
* only schema is worked
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -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> |