-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
55 lines (49 loc) · 1.21 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
defmodule Entrace.MixProject do
use Mix.Project
def project do
[
app: :entrace,
version: "0.1.1",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
# Docs
name: "Entrace",
description: "Easy tracing on the BEAM with Elixir",
source_url: "https://github.com/underjord/entrace",
docs: [
# The main page in the docs
main: "readme",
extras: ["README.md"]
],
package: [
name: :entrace,
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/underjord/entrace"}
]
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Entrace.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:ex2ms, "~> 1.7"},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp aliases do
[]
end
end