blob: f93fb46829dc0a0ce9e14a3796d58613c388e87a [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-actions</artifactId>
<version>0.10</version>
</parent>
<artifactId>hop-action-ftp</artifactId>
<packaging>jar</packaging>
<name>Hop Plugins Actions 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>