forked from sugar-framework/elixir-http-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
46 lines (41 loc) · 1.16 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
defmodule HttpRouter.Mixfile do
use Mix.Project
def project do
[ app: :http_router,
version: "0.0.7",
elixir: "~> 1.0",
deps: deps,
name: "HttpRouter",
package: package,
description: description,
docs: [ readme: "README.md", main: "README" ],
test_coverage: [ tool: ExCoveralls ] ]
end
def application do
[ applications: [ :logger, :poison, :cowboy, :plug,
:xml_builder] ]
end
defp deps do
[ { :cowboy, "~> 1.0.2" },
{ :plug, "~> 0.14.0" },
{ :poison, "~> 1.4.0" },
{ :xml_builder, "~> 0.0.6" },
{ :earmark, "~> 0.1.17", only: :docs },
{ :ex_doc, "~> 0.7.3", only: :docs },
{ :inch_ex, "~> 0.3.3", only: :docs },
{ :excoveralls, "~> 0.3.11", only: :test },
{ :dialyze, "~> 0.2.0", 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
%{ contributors: [ "Shane Logsdon" ],
licenses: [ "MIT" ],
links: %{ "GitHub" => "https://github.com/slogsdon/elixir-http-router" } }
end
end