<?xml version="1.0" encoding="UTF-8"?> <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>software.tnb</groupId> <artifactId>system-x-services</artifactId> <version>0.0.14</version> </parent> <artifactId>system-x-ftp</artifactId> <version>0.0.14</version> <name>TNB :: System-X :: Services :: FTP</name> <properties> <ftp.client.version>3.10.0</ftp.client.version> <sftp.client.version>0.37.0</sftp.client.version> </properties> <dependencies> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> </dependency> <!-- FTP client --> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>${ftp.client.version}</version> </dependency> <!-- SFTP client --> <dependency> <groupId>com.hierynomus</groupId> <artifactId>sshj</artifactId> <version>${sftp.client.version}</version> </dependency> </dependencies> </project>
<dependency> <groupId>software.tnb</groupId> <artifactId>system-x-ftp</artifactId> <version>0.0.14</version> </dependency>
software.tnb:system-x-ftp:0.0.14