diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-01-08 16:32:07 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-01-08 16:32:07 +0700 |
commit | 0c750bc432a6329be7f0dc15707e46625b11faf3 (patch) | |
tree | 36702360119a8bce2d2b41c84d32d0cdd1a48c0c /mix.exs | |
parent | 6428ef77adef6aa3fca1fbcdcfffc5db5fc953d5 (diff) | |
parent | 4e5b1560479df7dd553a2132186f9701e1d56871 (diff) | |
download | pleroma-0c750bc432a6329be7f0dc15707e46625b11faf3.tar.gz pleroma-0c750bc432a6329be7f0dc15707e46625b11faf3.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into feature/pinned-posts
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -32,7 +32,11 @@ defmodule Pleroma.Mixfile do # # Type `mix help compile.app` for more information. def application do - [mod: {Pleroma.Application, []}, extra_applications: [:logger, :runtime_tools, :comeonin]] + [ + mod: {Pleroma.Application, []}, + extra_applications: [:logger, :runtime_tools, :comeonin], + included_applications: [:ex_syslogger] + ] end # Specifies which paths to compile per environment. @@ -76,7 +80,8 @@ defmodule Pleroma.Mixfile do {:swoosh, "~> 0.20"}, {:gen_smtp, "~> 0.13"}, {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test}, - {:floki, "~> 0.20.0"} + {:floki, "~> 0.20.0"}, + {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"} ] end |