-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
50 lines (45 loc) · 1.37 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
defmodule Nomad.Mixfile do
use Mix.Project
@version "0.7.1"
def project do
[
app: :nomad,
version: @version,
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: "Create cloud portable Elixir and Phoenix apps. Write once, use everywhere!",
package: package
]
end
def application do
[
applications: [:logger, :httpoison, :friendly, :goth, :table_rex],
mod: {Nomad, []}
]
end
defp deps do
[
{:credo, "~> 0.3", only: [:dev, :test]},
{:ex_doc, "~> 0.11", only: [:dev]},
{:httpoison, "~> 0.8.1"},
{:table_rex, "~> 0.8.1"},
{:friendly, "~> 1.0.0"},
{:goth, "~> 0.1.2"},
{:ex_aws, github: "sashaafm/ex_aws", branch: "merge-rds-and-ec2-for-testing"},
{:gcloudex, github: "sashaafm/gcloudex"}
]
end
defp package do
[
licenses: ["MIT"],
name: :nomad,
maintainers: ["Sasha Fonseca"],
links: %{"GitHub" => "https://github.com/sashaafm/nomad"},
source_url: "https://github.com/sashaafm/nomad",
homepage_url: "https://github.com/sashaafm/nomad",
docs: [extras: "README.md"]
]
end
end