-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
46 lines (42 loc) · 1012 Bytes
/
mix.exs
File metadata and controls
46 lines (42 loc) · 1012 Bytes
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
defmodule SecretMana.MixProject do
use Mix.Project
@version "0.2.0"
@source_url "https://github.com/nduitz/secret_mana"
def project do
[
app: :secret_mana,
version: @version,
elixir: "~> 1.17",
description: "Mix tasks for installing and invoking age",
package: [
links: %{
"GitHub" => @source_url,
"age" => "https://github.com/FiloSottile/age"
},
licenses: ["MIT"]
],
docs: [
main: "SecretMana",
source_url: @source_url,
source_ref: "v#{@version}",
extras: ["CHANGELOG.md"]
],
deps: deps()
]
end
def application do
[
extra_applications: [:logger, erl_tar: :optional, inets: :optional, ssl: :optional],
mod: {SecretMana, []}
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:mock, "~> 0.3.9", only: :test},
{:jason, "~> 1.4"},
{:yaml_elixir, "~> 2.11"},
{:briefly, "~> 0.5.1"}
]
end
end