-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmix.exs
47 lines (42 loc) · 1.17 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
47
defmodule Placid.Mixfile do
use Mix.Project
def project do
[ app: :placid,
version: "0.3.0",
elixir: ">= 1.0.0",
deps: deps(),
name: "Placid",
package: package(),
description: description(),
docs: [ extras: [ "README.md" ],
main: "readme" ],
test_coverage: [ tool: ExCoveralls ] ]
end
def application do
[ applications: [ :logger, :poison, :cowboy, :plug,
:xml_builder, :linguist ],
mod: { Placid, [] } ]
end
defp deps do
[ { :cowboy, "~> 1.0" },
{ :plug, "~> 1.3" },
{ :http_router, "~> 0.10" },
{ :linguist, "~> 0.1" },
{ :poison, "~> 3.1" },
{ :xml_builder, "~> 0.0" },
{ :earmark, "~> 1.1", only: :dev },
{ :ex_doc, "~> 0.14", only: :dev },
{ :excoveralls, "~> 0.6", only: :test },
{ :dialyze, "~> 0.2", only: :test } ]
end
defp description do
"""
A REST toolkit for building highly-scalable and fault-tolerant HTTP APIs with Elixir
"""
end
defp package do
%{ maintainers: [ "Shane Logsdon" ],
licenses: [ "MIT" ],
links: %{ "GitHub" => "https://github.com/slogsdon/placid" } }
end
end