-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
47 lines (41 loc) · 1.03 KB
/
mix.exs
File metadata and controls
47 lines (41 loc) · 1.03 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
defmodule HeBroker.Mixfile do
use Mix.Project
def project do
[
app: :hebroker,
version: "0.1.0",
elixir: "~> 1.3",
name: "HEBroker",
description: "A simple broker for RPC and event handling",
package: package(),
elixirc_paths: compile_paths(Mix.env),
deps: deps()
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.14", only: :dev},
{:credo, "~> 0.5", only: :dev},
{:dialyxir, "~> 0.4", only: :dev, runtime: false}
]
end
defp compile_paths(:test),
do: ["lib", "test/helper"]
defp compile_paths(_),
do: ["lib"]
defp package do
[
licenses: ["BSD 3-Clause"],
files: ~w/mix.exs lib README.md LICENSE CHANGELOG.md/,
maintainers: ["Charlotte Lorelei Oliveira"],
links: %{
"Phabricator" => "https://dev.hackerexperience.com/diffusion/BROKER/",
"GitHub" => "https://github.com/HackerExperience/HeBroker"
}
]
end
end