-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
43 lines (38 loc) · 886 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
defmodule CeeLogFormatter.Mixfile do
use Mix.Project
def project do
[
app: :cee_log_formatter,
build_embedded: Mix.env() == :prod,
deps: deps(),
description: description(),
elixir: "~> 1.4",
package: package(),
start_permanent: Mix.env() == :prod,
version: "0.2.3"
]
end
def application do
[extra_applications: [:logger], env: [json_library: Poison]]
end
defp description do
"""
A log formatter for the CEE format.
"""
end
defp package do
[
name: :cee_log_formatter,
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Donald Plummer"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/avvo/cee_log_formatter"}
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:poison, ">= 0.1.0", optional: true}
]
end
end