-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
35 lines (31 loc) · 780 Bytes
/
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
defmodule AutoSwaggerEx.MixProject do
use Mix.Project
def project do
[
app: :auto_swagger_ex,
version: "0.0.1",
elixir: "~> 1.10",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib", "test/support"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix, "~> 1.3.2"},
{:phoenix_swagger, "~> 0.8"},
{:phoenix_ecto, "~> 4.0"},
{:inflex, "~> 2.0.0"},
{:rubbergloves, "~> 0.0.6"},
]
end
end