-
Notifications
You must be signed in to change notification settings - Fork 40
/
mix.exs
44 lines (39 loc) · 961 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
defmodule LoggerLogstashBackend.Mixfile do
use Mix.Project
def project do
[app: :logger_logstash_backend,
name: "logger_logstash_backend",
source_url: "https://github.com/marcelog/logger_logstash_backend",
version: "5.0.0",
elixir: "~> 1.3",
description: description(),
package: package(),
deps: deps()]
end
def application do
[applications: [:logger, :timex, :exjsx]]
end
defp deps do
[
{:earmark, "~> 1.0.3", only: :dev},
{:ex_doc, "~> 0.14.5", only: :dev},
{:exjsx, "~> 3.2.1"},
{:timex, "~> 3.1.8"}
]
end
defp description do
"""
Logstash UDP producer backend for Logger.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Marcelo Gornstein"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/marcelog/logger_logstash_backend"
}
]
end
end