-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
46 lines (42 loc) · 1.23 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
# Copyright (C) 2020 by the Georgia Tech Research Institute (GTRI)
# This software may be modified and distributed under the terms of
# the BSD 3-Clause license. See the LICENSE file for details.
defmodule LowendinsightGet.MixProject do
use Mix.Project
def project do
[
app: :lowendinsight_get,
version: "0.7.2",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls]
]
end
def application do
[
extra_applications: [:logger, :exq],
mod: {LowendinsightGet.Application, []}
]
end
defp deps do
[
{:plug, "~> 1.14"},
{:joken, "~> 2.5.0"},
{:elixir_uuid, "~> 1.2"},
{:cowboy, "~> 2.9", overide: true},
{:plug_cowboy, "~> 2.0"},
{:credo, "~> 1.6", except: :prod, runtime: false},
{:redix, ">= 0.0.0"},
{:quantum, "~> 3.5"},
{:timex, "~> 3.7"},
{:exq, "~> 0.17"},
## {:lowendinsight, path: "../lowendinsight"},
## {:lowendinsight, git: "[email protected]:gtri/lowendinsight", branch: "develop"}
{:lowendinsight, "0.7.2"},
{:httpoison_retry, "~> 1.1.0"},
{:distillery, "~> 2.1"},
{:excoveralls, "~> 0.14.0", only: :test}
]
end
end