You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
3 years ago
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
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>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.fourelementscapital</groupId>
|
||
|
<artifactId>lib</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.fourelementscapital</groupId>
|
||
|
<artifactId>lib-db</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>lib-db</name>
|
||
|
<description>Lower level DAL (Data Access Layer) for database call</description>
|
||
|
<url>http://www.fourelementscapital.com</url>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-dbutils</groupId>
|
||
|
<artifactId>commons-dbutils</artifactId>
|
||
|
<version>1.1</version>
|
||
|
</dependency>
|
||
|
<!--Cache system used to get queue-->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-jcs-core</artifactId>
|
||
|
<version>2.2</version>
|
||
|
</dependency>
|
||
|
<!--JCS's required dependency-->
|
||
|
<dependency>
|
||
|
<groupId>com.jolbox</groupId>
|
||
|
<artifactId>bonecp</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.microsoft.sqlserver</groupId>
|
||
|
<artifactId>mssql-jdbc</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-core</artifactId>
|
||
|
<version>2.8.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|