-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
49 lines (44 loc) · 1.15 KB
/
mix.exs
File metadata and controls
49 lines (44 loc) · 1.15 KB
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
45
46
47
48
49
defmodule Uberlog.MixProject do
use Mix.Project
def project do
[
app: :uberlog,
version: "1.0.0",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "Uberlog",
description: "Elixir Logger Backends library with various logging strategies",
source_url: "https://github.com/PharosProduction/uberlog",
homepage_url: "http://www.pharosproduction.com",
docs: [main: "readme", extras: ["README.md"]]
]
end
def application do
[
extra_applications: [:logger],
mod: {Uberlog.Application, []}
]
end
defp deps do
[
{:gen_stage, "~> 0.14"},
{:httpoison, "~> 1.2", override: true},
{:jason, "~> 1.1"},
{:optium, "~> 0.3"},
{:backoff, "~> 1.1"}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/PharosProduction/uberlog"},
maintainers: ["Dmytro Nasyrov @ Pharos Production Inc."]
]
end
end