-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpom.xml
More file actions
35 lines (33 loc) · 1.27 KB
/
pom.xml
File metadata and controls
35 lines (33 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>dbptk-module-sql-server</name>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-module-sql-server</artifactId>
<version>4.1.0-SNAPSHOT</version>
<parent>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-modules</artifactId>
<version>4.1.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<dependencies>
<!-- internal dependencies -->
<dependency>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-model</artifactId>
</dependency>
<dependency>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-module-jdbc</artifactId>
</dependency>
<!-- module-specific dependencies -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>10.2.4.jre8</version>
</dependency>
</dependencies>
</project>