-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
44 lines (39 loc) · 936 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
defmodule HedwigFlowdock.Mixfile do
use Mix.Project
@version "0.1.3"
def project do
[
app: :hedwig_flowdock,
name: "Hedwig Flowdock",
version: @version,
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
description: "A Flowdock adapter for Hedwig",
deps: deps()
]
end
def application do
[applications: [:logger, :connection, :gun, :hedwig, :poison]]
end
defp deps do
[
{:connection, "~> 1.0"},
{:gun, "1.0.0-pre.1"},
{:hedwig, "~> 1.0"},
{:poison, "~> 2.0"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Sean Williamson"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/supernullset/hedwig_flowdock"
}
]
end
end