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.
45 lines
1.2 KiB
45 lines
1.2 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>
|
||
|
<groupId>com.fourelementscapital</groupId>
|
||
|
<artifactId>iexec</artifactId>
|
||
|
<version>3.0.0-Beta1</version>
|
||
|
<name>iexec</name>
|
||
|
<url>http://www.fourelementscapital.com</url>
|
||
|
<dependencies>
|
||
|
|
||
|
<!--Cache system-->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-jcs-core</artifactId>
|
||
|
<version>2.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--JCS's required dependency-->
|
||
|
<dependency>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
<version>1.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--4ECAP Libs-->
|
||
|
<dependency>
|
||
|
<groupId>com.fourelementscapital</groupId>
|
||
|
<artifactId>lib-db</artifactId>
|
||
|
<version>2.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--Log dependencies-->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-core</artifactId>
|
||
|
<version>2.8.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
</project>
|