blob: e338cf2a9586322f553ffc7b46630164810425d8 [file] [log] [blame]
<?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>org.hop</groupId>
<artifactId>hop-plugins-jobentries</artifactId>
<version>0.1.0-RC</version>
</parent>
<artifactId>hop-jobentry-ftp</artifactId>
<packaging>jar</packaging>
<name>Hop Plugins Job entries Get/Put/Delete a file with FTP/FTPS/SFTP</name>
<properties>
<edtftpj.version>2.1.0</edtftpj.version>
<trilead-ssh2.version>build213</trilead-ssh2.version>
<ftp4che.version>0.7.1</ftp4che.version>
</properties>
<dependencies>
<dependency>
<groupId>com.enterprisedt</groupId>
<artifactId>edtftpj</artifactId>
<version>${edtftpj.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>trilead-ssh2</groupId>
<artifactId>trilead-ssh2</artifactId>
<version>${trilead-ssh2.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ftp4che</groupId>
<artifactId>ftp4che</artifactId>
<version>${ftp4che.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>