summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Schoenfelder <paulschoenfelder@gmail.com>2017-06-26 13:20:09 -0500
committerPaul Schoenfelder <paulschoenfelder@gmail.com>2017-06-26 13:20:14 -0500
commit9ec63d3c73680e38e9aea4296bb40ea9f051cf2a (patch)
treebf74143415ac9700b5e31efdad9c1a67045ec49b
parentMerge pull request #67 from ryanwinchester/master (diff)
Fix #68: Ensure applications list is defined
-rw-r--r--mix.exs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 36747a1..63f24a6 100644
--- a/mix.exs
+++ b/mix.exs
@@ -14,7 +14,8 @@ defmodule ExIrc.Mixfile do
# Configuration for the OTP application
def application do
- [mod: {ExIrc.App, []}]
+ [mod: {ExIrc.App, []},
+ applications: [:ssl, :crypto, :inets]]
end
defp package do