This is an automated email from the ASF dual-hosted git repository. lgoldstein pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
commit 66380054926ae0433e21a24cc9b330d201fc2304 Author: Lyor Goldstein <lgoldst...@apache.org> AuthorDate: Thu Nov 12 17:21:28 2020 +0200 Upgraded test containers version to 1.15.0 --- sshd-sftp/pom.xml | 9 ++++++++- .../java/org/apache/sshd/sftp/client/SftpPerformanceTest.java | 2 -- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sshd-sftp/pom.xml b/sshd-sftp/pom.xml index 1fd2aa4..eda5544 100644 --- a/sshd-sftp/pom.xml +++ b/sshd-sftp/pom.xml @@ -99,11 +99,18 @@ <dependencyManagement> <dependencies> + <!-- Referenced indirectly by testcontainers --> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna</artifactId> + <version>5.6.0</version> + </dependency> + <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers-bom</artifactId> <type>pom</type> - <version>1.14.3</version> + <version>1.15.0</version> <scope>import</scope> </dependency> </dependencies> diff --git a/sshd-sftp/src/test/java/org/apache/sshd/sftp/client/SftpPerformanceTest.java b/sshd-sftp/src/test/java/org/apache/sshd/sftp/client/SftpPerformanceTest.java index 54b6aec..1e2c744 100644 --- a/sshd-sftp/src/test/java/org/apache/sshd/sftp/client/SftpPerformanceTest.java +++ b/sshd-sftp/src/test/java/org/apache/sshd/sftp/client/SftpPerformanceTest.java @@ -38,7 +38,6 @@ import org.apache.sshd.client.session.ClientSession; import org.apache.sshd.common.keyprovider.KeyIdentityProvider; import org.apache.sshd.sftp.client.SftpClient.OpenMode; import org.apache.sshd.sftp.client.fs.SftpFileSystem; -import org.jetbrains.annotations.NotNull; import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; @@ -132,7 +131,6 @@ public class SftpPerformanceTest { return session; } - @NotNull public SshClient createSshClient() { SshClient client = SshClient.setUpDefaultClient(); client.setServerKeyVerifier(AcceptAllServerKeyVerifier.INSTANCE);