forked from elixir-plug/plug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
33 lines (29 loc) · 813 Bytes
/
mix.exs
File metadata and controls
33 lines (29 loc) · 813 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
defmodule Plug.Mixfile do
use Mix.Project
def project do
[app: :plug,
version: "0.8.2",
elixir: "~> 1.0",
deps: deps,
package: package,
description: "A specification and conveniences for composable " <>
"modules in between web applications",
docs: [readme: true, main: "README"]]
end
# Configuration for the OTP application
def application do
[applications: [:crypto, :logger],
mod: {Plug, []}]
end
def deps do
[{:cowboy, "~> 1.0", optional: true},
{:earmark, "~> 0.1", only: :docs},
{:ex_doc, "~> 0.6", only: :docs},
{:inch_ex, only: :docs},
{:hackney, "~> 0.13", only: :test}]
end
defp package do
%{licenses: ["Apache 2"],
links: %{"Github" => "https://github.com/elixir-lang/plug"}}
end
end