forked from CaliDog/EasySSL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
43 lines (39 loc) · 1.02 KB
/
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
defmodule EasySSL.MixProject do
use Mix.Project
def project do
[
app: :easy_ssl,
name: "EasySSL",
version: "1.3.0",
elixir: "~> 1.6",
description: "SSL/X509 parsing for humans.",
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
source_url: "https://github.com/CaliDog/EasySSL",
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:excoveralls, "~> 0.8", only: :test},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:poison, "~> 2.0", only: :test},
]
end
defp package() do
[
name: "easy_ssl",
# These are the default files included in the package
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Ryan Sears"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/CaliDog/EasySSL"}
]
end
end