forked from elixir-plug/plug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
31 lines (27 loc) · 783 Bytes
/
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
defmodule Plug.Mixfile do
use Mix.Project
def project do
[app: :plug,
version: "0.5.3",
elixir: "~> 0.15.0-dev",
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],
mod: {Plug, []}]
end
def deps do
[{:cowboy, "~> 1.0.0", optional: true},
{:ex_doc, github: "elixir-lang/ex_doc", only: [:docs]},
{:hackney, github: "benoitc/hackney", only: [:test]}]
end
defp package do
%{licenses: ["Apache 2"],
links: %{"Github" => "https://github.com/elixir-lang/plug"}}
end
end