ftpsync
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>guru.nidi.ftpsync</groupId>
<artifactId>ftpsync</artifactId>
<version>1.0.0</version>
</dependency><?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>guru.nidi</groupId>
<artifactId>guru-nidi-parent-pom</artifactId>
<version>1.0.0</version>
</parent>
<groupId>guru.nidi.ftpsync</groupId>
<artifactId>ftpsync</artifactId>
<version>1.0.0</version>
<name>${project.artifactId}</name>
<description>A simple synchronizer between a local an a remote server (using only (S)FTP).</description>
<url>https://github.com/nidi3/ftp-sync</url>
<inceptionYear>2014</inceptionYear>
<scm>
<connection>scm:git:https://github.com/nidi3/ftp-sync</connection>
<developerConnection>scm:git:https://github.com/nidi3/ftp-sync</developerConnection>
<url>https://github.com/nidi3/ftp-sync</url>
<tag>ftpsync-1.0.0</tag>
</scm>
<build>
<plugins>
<!--<plugin>-->
<!--<artifactId>maven-dependency-plugin</artifactId>-->
<!--<version>2.6</version>-->
<!--<executions>-->
<!--<execution>-->
<!--<phase>prepare-package</phase>-->
<!--<goals>-->
<!--<goal>copy-dependencies</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<outputDirectory>${project.build.outputDirectory}</outputDirectory>-->
<!--<includeScope>compile</includeScope>-->
<!--</configuration>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>guru.nidi.ftpsync.FtpSync</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>net.schmizz</groupId>
<artifactId>sshj</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
</dependency>
</dependencies>
</project>