-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmix.exs
More file actions
48 lines (43 loc) · 1.13 KB
/
mix.exs
File metadata and controls
48 lines (43 loc) · 1.13 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
48
defmodule HttpRouter.Mixfile do
use Mix.Project
def project do
[ app: :http_router,
version: "0.10.0",
elixir: "~> 1.0",
deps: deps(),
name: "HttpRouter",
package: package(),
description: description(),
docs: [ main: "HttpRouter" ],
test_coverage: [ tool: ExCoveralls ] ]
end
def application do
[ applications: [ :logger, :poison, :cowboy, :plug,
:xml_builder] ]
end
defp deps do
[
{:cowboy, "~> 1.0"},
{:plug, "~> 1.0"},
{:poison, "~> 3.0"},
{:xml_builder, "~> 2.3"},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.14", only: :dev},
{:credo, "~> 0.5", only: [:dev, :test]},
{:excoveralls, "~> 0.5", only: :test},
{:dialyze, "~> 0.2", only: :test}
]
end
defp description do
"""
HTTP Router with various macros to assist in
developing your application and organizing
your code
"""
end
defp package do
%{ maintainers: [ "Shane Logsdon" ],
licenses: [ "MIT" ],
links: %{ "GitHub" => "https://github.com/sugar-framework/elixir-http-router" } }
end
end