-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmix.exs
45 lines (39 loc) · 882 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
defmodule GhWebhookPlug.Mixfile do
use Mix.Project
def project do
[app: :gh_webhook_plug,
version: "0.0.5",
elixir: "~> 1.5",
description: description(),
package: package(),
deps: deps(),
docs: docs()]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:plug, "~>1.4"},
{:ex_doc, "~> 0.3", only: :dev}
]
end
defp description do
"""
This Plug makes it easy to listen and respond to Github webhook requests
in your Elixir apps.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Emil Soman"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/emilsoman/gh_webhook_plug"}]
end
defp docs do
[extras: ["README.md"]]
end
end