Skip to content

Commit

Permalink
FTP: improve testing stability
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan José Vázquez committed Jul 27, 2017
1 parent 5a5e82d commit f40609a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .jvmopts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-Dfile.encoding=UTF8
-Djava.security.egd=file:/dev/./urandom
-Xms1g
-Xmx1g
-Xss6M
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ abstract class FtpBaseSupport implements FtpSupport, AkkaSupport {
usersFile =
new File(getClass().getClassLoader().getResource("users.properties").getFile());
port = AvailablePortFinder.getNextAvailable(BASE_PORT);
system = ActorSystem.create("default");
system = ActorSystem.create("alpakka-ftp");
materializer = ActorMaterializer.create(system);
} finally {
port = BASE_PORT;
Expand Down
5 changes: 3 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,11 @@ object Dependencies {

val Ftp = Seq(
libraryDependencies ++= Seq(
"commons-net" % "commons-net" % "3.5", // ApacheV2
"commons-net" % "commons-net" % "3.6", // ApacheV2
"com.hierynomus" % "sshj" % "0.21.1", // ApacheV2
"org.apache.ftpserver" % "ftpserver-core" % "1.1.1" % Test, // ApacheV2
"org.apache.sshd" % "sshd-core" % "1.4.0" % Test, // ApacheV2
"org.apache.sshd" % "sshd-core" % "1.6.0" % Test, // ApacheV2
"net.i2p.crypto" % "eddsa" % "0.2.0" % Test, // CC0 1.0 Universal
"com.google.jimfs" % "jimfs" % "1.1" % Test, // ApacheV2
"org.slf4j" % "slf4j-api" % "1.7.21" % Test, // MIT
"ch.qos.logback" % "logback-classic" % "1.1.7" % Test, // Eclipse Public License 1.0
Expand Down

0 comments on commit f40609a

Please sign in to comment.