-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
48 lines (43 loc) · 1.19 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
defmodule Ghoul.Mixfile do
use Mix.Project
@version "0.1.1"
@repo_url "https://github.com/meyercm/ghoul"
def project do
[app: :ghoul,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
preferred_cli_env: [espec: :test],
deps: deps(),
package: hex_package(),
description: "An undead cleanup crew for your processes",
name: "Ghoul",
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger],
mod: {Ghoul.Application, []}]
end
defp deps do
[
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:espec, "~> 1.4.5", only: :test},
{:gproc, "~> 0.6"},
{:pattern_tap, "~> 0.4"},
{:shorter_maps, "~> 2.2"},
]
end
defp hex_package do
[maintainers: ["Chris Meyer"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url}]
end
end