-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
36 lines (28 loc) · 766 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
defmodule LoggerStatsderlBackend.Mixfile do
use Mix.Project
@version File.read!("VERSION") |> String.strip
def project do
[app: :logger_statsderl_backend,
version: @version,
elixir: "~> 1.0",
description: "backend for Logger that sends counters to graphite using statsderl",
deps: deps,
package: package]
end
def application do
[applications: [:statsderl]]
end
defp deps do
[
{:statsderl, git: "https://github.com/lpgauth/statsderl.git", tag: "0.4.3"}
]
end
defp package do
[
files: ~w(lib mix.exs README.md VERSION),
maintainers: ["enotsimon"],
licenses: ["Unlicense"],
links: %{"GitHub" => "https://github.com/enotsimon/logger_statsderl_backend"}
]
end
end