unitils-ftp
Used in: 
components
- OverviewOverview
 - VersionsVersions
 - DependentsDependents
 - DependenciesDependencies
 
<dependency>
    <groupId>org.unitils.ftp</groupId>
    <artifactId>unitils-ftp</artifactId>
    <version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <groupId>org.unitils.ftp</groupId>
  <artifactId>unitils-ftp</artifactId>
  <version>1.0.1</version>
  <packaging>jar</packaging>
  <url>https://sourceforge.net/projects/unitilsftp/</url>
  <inceptionYear>2013</inceptionYear>
  <scm>
    <connection>scm:svn:https://svn.code.sf.net/p/unitilsftp/code/tags/unitils-ftp-1.0.1</connection>
    <developerConnection>scm:svn:https://svn.code.sf.net/p/unitilsftp/code/tags/unitils-ftp-1.0.1</developerConnection>
    <url>https://svn.code.sf.net/p/unitilsftp/code/tags/unitils-ftp-1.0.1</url>
  </scm>
  <name>Unitils ftpmodule</name>
  <description>A fake FTP server where you can easily test if a file is correctly retrieved from the server.</description>
  <properties>
    <unitils.version>3.4.1</unitils.version>
  </properties>
  <developers>
    <developer>
      <name>Jeroen Horemans</name>
    </developer>
    <developer>
      <name>Thomas De Rycke</name>
    </developer>
    <developer>
      <name>Willemijn Wouters</name>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>org.mockftpserver</groupId>
      <artifactId>MockFtpServer</artifactId>
      <version>2.4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.unitils</groupId>
      <artifactId>unitils-core</artifactId>
      <version>${unitils.version}</version>
    </dependency>
    <dependency>
      <groupId>commons-net</groupId>
      <artifactId>commons-net</artifactId>
      <version>1.4.1</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <encoding>utf-8</encoding>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>