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.
99 lines
2.8 KiB
99 lines
2.8 KiB
<?xml version="1.0"?> |
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>lib</artifactId> |
|
<version>${revision}</version> |
|
</parent> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>lib-imonitor</artifactId> |
|
<name>lib-imonitor</name> |
|
<description>Receive message by socket and send to email, phone, say</description> |
|
<url>http://www.fourelementscapital.com</url> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>${project.basedir}</directory> |
|
<targetPath>${project.build.directory}</targetPath> |
|
<includes> |
|
<include>ThemeEmails.xlsx</include> |
|
</includes> |
|
</resource> |
|
<resource> |
|
<directory>${project.basedir}/src/main/resources</directory> |
|
<targetPath>${project.build.directory}/classes</targetPath> |
|
<includes> |
|
<include>*.*</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
<artifactId>log4j-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>lib-socket</artifactId> |
|
<version>2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>lib-tts</artifactId> |
|
<version>2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.mail</groupId> |
|
<artifactId>javax.mail</artifactId> |
|
<version>1.5.6</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.activation</groupId> |
|
<artifactId>activation</artifactId> |
|
<version>1.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-collections4</artifactId> |
|
<version>4.1</version> |
|
</dependency> |
|
|
|
<!-- to send email : --> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-lang3</artifactId> |
|
<version>3.0</version> |
|
</dependency> |
|
|
|
<!-- Stackalarm : --> |
|
<dependency> |
|
<groupId>commons-net</groupId> |
|
<artifactId>commons-net</artifactId> |
|
<version>3.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
</dependency> |
|
|
|
<!-- to read excel file : --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>3.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>3.15</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
</project>
|
|
|