-
Notifications
You must be signed in to change notification settings - Fork 5
/
mix.exs
49 lines (44 loc) · 796 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
46
47
48
49
defmodule ElixirEtcd.Mixfile do
use Mix.Project
def project do
[app: :etcd,
version: "0.0.1",
elixir: "~> 1.0",
description: desc,
package: package,
deps: deps]
end
def application do
[
applications: [
:logger,
:exjsx,
:httpoison,
],
env: [
url: "http://127.0.0.1:4001",
crt: "./etcd.crt",
key: "./etcd.key",
ca: "./ca.crt",
]
]
end
defp deps do
[
{:exjsx, "~> 3.0"},
{:httpoison, "~> 0.7"},
]
end
defp desc do
"""
Etcd APIv2 Client for Elixir
"""
end
defp package do
[
licenses: ["MIT"],
contributors: ["Bearice Ren"],
links: %{"Github" => "https://github.com/bearice/elixir-etcd"}
]
end
end