-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
40 lines (35 loc) · 718 Bytes
/
mix.exs
File metadata and controls
40 lines (35 loc) · 718 Bytes
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 HELF.Mixfile do
use Mix.Project
def project do
[
app: :helf,
version: "0.0.3",
elixir: "~> 1.5",
dialyzer: [plt_add_apps: [:mix]],
deps: deps(),
description: description(),
package: package()
]
end
def application do
[]
end
defp deps do
[
{:cowboy,"~> 1.1.2"},
{:poison, "~> 3.1.0"},
{:bamboo, "~> 0.8"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description do
"HELF - Hacker Experience Lovely Framework"
end
defp package do
[
maintainers: ["Renato Massaro"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/HackerExperience/HELF"}
]
end
end