Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/SCPRemote-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Properties
Usage Notes
--------

In order to perform SCP between to remote hosts, we require a Bato. An SCP command based on the configuration supplied will be created to perform a compressed file copy. Authentication setup between all hosts will need to be setup before hand. This includes being able to SSH on the bastion host with the private key being supplied in the configuration and have the 2 remote hosts that files are being moved on having known host/authenticated_keys setup for SSH communication between them.stion host that we will ssh in
In order to perform SCP between to remote hosts, we require a Bastion Host. An SCP command based on the configuration supplied will be created to perform a file copy. Authentication setup between all hosts will need to be setup before hand. This includes being able to SSH on the bastion host with the private key being supplied in the configuration and have the 2 remote hosts that files are being moved on having known host/authenticated_keys setup for SSH communication.
21 changes: 5 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,36 +20,31 @@
<groupId>io.cdap.plugin</groupId>
<artifactId>sftp-actions-ssh</artifactId>
<packaging>jar</packaging>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<name>SFTP Actions</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cdap.version>6.1.2</cdap.version>
<hydrator.version>2.3.5</hydrator.version>
<cdap.version>6.2.0</cdap.version>
<hydrator.version>2.4.0</hydrator.version>
<jsch.version>0.1.53</jsch.version>
<hadoop.version>2.3.0</hadoop.version>
<guava.version>19.0</guava.version>

<!-- properties for script build step that creates the config files for the artifacts -->
<widgets.dir>widgets</widgets.dir>
<docs.dir>docs</docs.dir>

<!-- This is the version range for the app.parents that this plugin is valid for. Usally this will correspond with
<!-- This is the version range for the app.parents that this plugin is valid for. Usually this will correspond with
the CDAP version, but not always. -->
<etl.versionRange>[6.0.0-SNAPSHOT,7.0.0-SNAPSHOT)</etl.versionRange>

<!-- These are the application template artifacts that this plugin will be available for. -->
<app.parents>
system:cdap-data-pipeline,
system:cdap-data-streams
</app.parents>

<!-- this is here because project.basedir evaluates to null in the script build step -->
<main.basedir>${project.basedir}</main.basedir>
</properties>

<url>http://maven.apache.org</url>

<dependencies>
<dependency>
<groupId>io.cdap.cdap</groupId>
Expand Down Expand Up @@ -80,8 +75,6 @@
<version>${cdap.version}</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
Expand All @@ -104,16 +97,13 @@
<version>4.12</version>
<scope>test</scope>
</dependency>



<!-- https://github.com/shamsoftware/sham-ssh :Mock SSH Server used for testing-->
<dependency>
<groupId>software.sham</groupId>
<artifactId>sham-ssh</artifactId>
<version>0.1.0</version>
<scope>test</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
<dependency>
<groupId>org.mockito</groupId>
Expand All @@ -122,7 +112,6 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down
Loading