Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove FTP as transport #144

Merged
merged 1 commit into from
Jan 7, 2025
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
10 changes: 0 additions & 10 deletions pass-deposit-services/deposit-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,6 @@
<artifactId>commons-io</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
Expand All @@ -132,11 +127,6 @@
<artifactId>commons-codec</artifactId>
</dependency>

<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
</dependency>

<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-sftp</artifactId>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
include = JsonTypeInfo.As.PROPERTY,
property = "protocol")
@JsonSubTypes({
@JsonSubTypes.Type(value = FtpBinding.class, name = FtpBinding.PROTO),
@JsonSubTypes.Type(value = SftpBinding.class, name = SftpBinding.PROTO),
@JsonSubTypes.Type(value = SwordV2Binding.class, name = SwordV2Binding.PROTO),
@JsonSubTypes.Type(value = FilesystemBinding.class, name = FilesystemBinding.PROTO),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Contains parameters and configuration for communicating with a downstream repository for the purpose of transferring
* the custody of materials deposited by a user of PASS.
* <p>
* A "repository" may be a DSpace instance, an FTP server, a Pass Core repository, or any system capable of receiving a
* A "repository" may be a DSpace instance, an SFTP server, a Pass Core repository, or any system capable of receiving a
* package of materials.
* </p>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ enum AUTHMODE {
enum PROTOCOL {
http,
https,
ftp,
sftp,
SWORDv2,
filesystem,
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading