-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
31 lines (28 loc) · 821 Bytes
/
mix.exs
File metadata and controls
31 lines (28 loc) · 821 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
defmodule RestService.Mixfile do
use Mix.Project
def project do
[ app: :rest_service,
version: "0.0.1",
elixir: "~> 0.15",
deps: deps ]
end
# Configuration for the OTP application
def application do
[ registered: [
:rest_service_sup,
:rest_service_store_sup,
:rest_service_store],
applications: [:cowboy],
mod: { :rest_service_app, [] } ]
end
# Returns the list of dependencies in the format:
# { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" }
#
# To specify particular versions, regardless of the tag, do:
# { :barbat, "~> 0.1", github: "elixir-lang/barbat" }
defp deps do
[{:cowboy, github: "extend/cowboy", tag: "0.9.0"},
{:proper, github: "manopapad/proper", tag: "master"}
]
end
end