forked from TheRealReal/new-relixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
40 lines (35 loc) · 984 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
defmodule NewRelixir.Mixfile do
use Mix.Project
def project do
[app: :new_relixir,
name: "New Relixir",
version: "0.3.0-rc.0",
elixir: "~> 1.2",
description: "New Relic tracking for Elixir applications.",
package: package(),
source_url: "https://github.com/TheRealReal/new-relixir",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
aliases: aliases(),
deps: deps()]
end
def application do
[mod: {NewRelixir, []},
applications: [:logger, :lhttpc]]
end
defp deps do
[{:phoenix, "~> 1.3-rc"},
{:ecto, ">= 1.1.0 and < 3.0.0"},
{:newrelic, "~> 0.1.0"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.11", only: :dev}]
end
defp package do
[maintainers: ["Fredrik Björk", "Robert Zotter"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/TheRealReal/new-relixir"}]
end
defp aliases do
["test": ["test --no-start"]]
end
end