-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
39 lines (36 loc) · 1.13 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
defmodule Knotex.Mixfile do
@moduledoc false
use Mix.Project
@name :knotex
@version "0.1.0"
def project do
[
package: package(),
elixir: "~> 1.4",
apps_path: "apps",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: [
# Production dependencies.
{:distillery, "~> 1.5", only: :prod},
{:edeliver, "~> 1.4", only: :prod},
# Dev / Tooling dependencies.
{:ex_doc, "~> 0.16", only: :dev},
{:mix_test_watch, "~> 0.5", only: :dev},
{:credo, "~> 0.8", only: :dev},
{:dialyxir, "~> 0.5", only: :dev}
],
dialyzer: [plt_add_deps: :app_tree, plt_add_apps: [:mix]]
]
end
defp package do
[
name: @name,
version: @version,
files: ~w(config lib test mix.exs README*),
maintainers: ["Pierre Martin<[email protected]>"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/hickscorp/knotex"}
]
end
end