ftp-util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cerner.ftp</groupId>
<artifactId>ftp-util</artifactId>
<version>2.2</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>com.cerner.ccl</groupId>
<artifactId>ccltesting-parent-pom</artifactId>
<version>2.3</version>
<relativePath>../parent-pom</relativePath>
</parent>
<groupId>com.cerner.ftp</groupId>
<artifactId>ftp-util</artifactId>
<name>File Transfer Utilities</name>
<packaging>jar</packaging>
<version>2.2</version>
<description>File transfer utilities to ease and abstract the work required to upload and download files via SFTP.</description>
<scm>
<connection>scm:git:https://github.com/cerner/ccl-testing.git</connection>
<developerConnection>scm:git:https://github.com/cerner/ccl-testing.git</developerConnection>
<url>https://github.com/cerner/ccl-testing/tree/master/ftp-util</url>
</scm>
<developers>
<developer>
<name>Fred Eckertson</name>
<organization>Cerner Corporation</organization>
<organizationUrl>https://github.com/cerner</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Joshua Hyde</name>
<roles>
<role>owner</role>
</roles>
</developer>
</developers>
<build>
<extensions>
<extension>
<groupId>com.github.shyiko.servers-maven-extension</groupId>
<artifactId>servers-maven-extension</artifactId>
<version>1.3.0</version>
</extension>
</extensions>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
<testResource>
<directory>src/it/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-src-it-java</id>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/it/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.kuali.maven.plugins</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>2.0.1</version>
<executions>
<execution>
<phase>pre-integration-test</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>
${project.build.testOutputDirectory}/spring/build.properties
</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>post-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<delete>
<fileset dir="${project.build.testOutputDirectory}/spring" includes="build.properties" />
</delete>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.cerner.ftp</groupId>
<artifactId>jsch-util</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</dependency>
<dependency>
<groupId>fm.void.jetm</groupId>
<artifactId>jetm</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.jetm</groupId>
<artifactId>jetm-reporting-utilities</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<configuration>
<dates>
<date implementation="java.lang.String">2018-07-04</date>
</dates>
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.jetm</groupId>
<artifactId>jetm-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<timings>
<timing>${project.build.directory}/jetm</timing>
</timings>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<!-- An example profile needed for integration testing -->
<profile>
<id>example-profile</id>
<properties>
<ccl-host>host name/address</ccl-host>
<ccl-hostCredentialsId>server id containing credentials for the host</ccl-hostCredentialsId>
</properties>
</profile>
</profiles>
</project>