forked from findmypast/vaultex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
70 lines (62 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
defmodule Vaultex.Mixfile do
use Mix.Project
@version String.trim(File.read!("VERSION"))
@source_url "https://github.com/Semsee/vaultex"
def project do
[
app: :vaultex,
version: @version,
elixir: "~> 1.14",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
docs: docs(),
package: package(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def application do
[extra_applications: [:logger, :httpoison, :poison], mod: {Vaultex, []}]
end
defp deps do
[
{:httpoison, "~>2.0"},
{:poison, "~> 3.1 or ~> 5.0"},
{:ex_aws, "~> 2.4", optional: true},
{:ex_doc, ">= 0.22.0", only: :dev},
{:excoveralls, "~> 0.10", only: :test}
]
end
defp description do
"""
Fork of vaultex - a read-only client for HashiCorp's Vault.
Updated to fix bugs with IAM and requires Elixir >= 1.14.
"""
end
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
source_url: @source_url,
extras: [
"README.md"
]
]
end
defp package do
# These are the default files included in the package
[
files: ["lib", "mix.exs", "README*", "VERSION", "CHANGELOG.md"],
maintainers: ["[email protected]"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @source_url}
]
end
end