-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
57 lines (53 loc) · 1.99 KB
/
mix.exs
File metadata and controls
57 lines (53 loc) · 1.99 KB
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
defmodule OpenAperture.Builder.Mixfile do
use Mix.Project
def project do
[app: :openaperture_builder,
version: "0.0.1",
elixir: "~> 1.0",
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[
mod: {OpenAperture.Builder, []},
applications: [
:logger,
:openaperture_messaging,
:openaperture_manager_api,
:openaperture_fleet,
:openaperture_workflow_orchestrator_api,
:openaperture_overseer_api,
:porcelain,
]
]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type `mix help deps` for more examples and options
defp deps do
[
{:ex_doc, "0.7.3", only: :test},
{:earmark, "0.1.17", only: :test},
{:poison, "~> 1.4.0", override: true},
{:openaperture_messaging, git: "https://github.com/OpenAperture/messaging.git", ref: "380ce611a038dd8f7afb4fa7f660aeac06475af0", override: true},
{:openaperture_manager_api, git: "https://github.com/OpenAperture/manager_api.git", ref: "dc06f0a484410e7707dab8e96807d54a564557ed", override: true},
{:openaperture_overseer_api, git: "https://github.com/OpenAperture/overseer_api.git", ref: "67e1ec93cf1e12e5b0e86165f33ede703a886092", override: true},
{:openaperture_fleet, git: "https://github.com/OpenAperture/fleet.git", ref: "9fa880eef5aa23bf89e3f121df04fdc542c74c73", override: true},
{:openaperture_workflow_orchestrator_api, git: "https://github.com/OpenAperture/workflow_orchestrator_api.git", ref: "4e56be62204b4ac3f05facb518b54f19eeba0c70", override: true},
{:tail, "~> 1.0.0"},
{:timex, "~> 0.13.3", override: true},
{:fleet_api, "~> 0.0.15", override: true},
{:porcelain, "~>2.0.0"},
{:uuid, "~> 0.1.5" },
{:meck, "0.8.3", override: true},
]
end
end