-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
100 lines (88 loc) · 2.49 KB
/
pom.xml
File metadata and controls
100 lines (88 loc) · 2.49 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0"?>
<project>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<build>
<sourceDirectory>
${project.basedir}/src/main
</sourceDirectory>
<resources>
<resource>
<directory>${project.basedir}/src/main</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>${project.basedir}/src</directory>
<includes>
<include>**/java.sql.Driver</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
</plugins>
</build>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1-jama11</version>
<packaging>jar</packaging>
<name>jTDS</name>
<url>http://jtds.sourceforge.net</url>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
</license>
</licenses>
<description>jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver
for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE
(10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest
production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC
3.0 compatible, supporting forward-only and scrollable/updateable ResultSets
and implementing all the DatabaseMetaData and ResultSetMetaData methods.
</description>
<scm>
<url>https://svn.code.sf.net/p/jtds/code</url>
</scm>
<developers>
<developer>
<id>momo</id>
<name>Holger Rehn</name>
<email>ickzon@users.sourceforge.net</email>
</developer>
</developers>
<distributionManagement>
<repository>
<id>jama-central</id>
<url>https://artifact.jamasoftware.net/repository/ext-release-local</url>
</repository>
</distributionManagement>
<dependencies>
<!-- jCIFS may be required for named pipe connections -->
<dependency>
<groupId>jcifs</groupId>
<artifactId>jcifs</artifactId>
<version>1.3.17</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>