diff options
Diffstat (limited to 'lib/ssh/src/ssh.app.src')
-rw-r--r-- | lib/ssh/src/ssh.app.src | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/lib/ssh/src/ssh.app.src b/lib/ssh/src/ssh.app.src index 8a3e15841f..2bb7491b0c 100644 --- a/lib/ssh/src/ssh.app.src +++ b/lib/ssh/src/ssh.app.src @@ -3,30 +3,30 @@ {application, ssh, [{description, "SSH-2 for Erlang/OTP"}, {vsn, "%VSN%"}, - {modules, ['DSS', - 'PKCS-1', - ssh, + {modules, [ssh, ssh_app, ssh_acceptor, ssh_acceptor_sup, ssh_auth, + ssh_message, ssh_bits, ssh_cli, + ssh_client_key_api, ssh_channel, ssh_channel_sup, ssh_connection, ssh_connection_handler, - ssh_connection_manager, - ssh_connection_controler, + ssh_connection_sup, + ssh_daemon_channel, + ssh_dbg, ssh_shell, sshc_sup, sshd_sup, - ssh_dsa, ssh_file, ssh_io, - ssh_math, + ssh_info, ssh_no_io, - ssh_rsa, + ssh_server_key_api, ssh_sftp, ssh_sftpd, ssh_sftpd_file, @@ -35,11 +35,16 @@ ssh_sup, ssh_system_sup, ssh_transport, - ssh_userreg, ssh_xfer]}, {registered, []}, - {applications, [kernel, stdlib, crypto]}, + {applications, [kernel, stdlib, crypto, public_key]}, {env, []}, - {mod, {ssh_app, []}}]}. - + {mod, {ssh_app, []}}, + {runtime_dependencies, [ + "crypto-3.3", + "erts-6.0", + "kernel-3.0", + "public_key-1.1", + "stdlib-3.1" + ]}]}. |