forked from CyrusNuevoDia/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
54 lines (50 loc) · 1.24 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
51
52
53
54
defmodule Geocoder.Mixfile do
use Mix.Project
def project do
[
app: :geocoder,
description: "A simple, efficient geocoder/reverse geocoder with a built-in cache.",
version: "1.0.1",
elixir: "~> 1.8",
otp: "~> 22",
package: package(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
deps: deps()
]
end
def package do
[
licenses: ["MIT"],
maintainers: ["Artem Chervychnyk"],
links: %{"GitHub" => "https://github.com/Chervychnyk/geocoder"}
]
end
def application do
[
mod: {Geocoder, []},
extra_applications: [:logger, :poolboy, :geohash],
include_applications: [:nebulex]
]
end
defp deps do
[
{:tesla, "~> 1.2.1"},
{:hackney, "~> 1.16"},
{:jason, ">= 1.0.0"},
{:poolboy, "~> 1.5"},
{:geohash, "~> 1.2"},
{:nebulex, "~> 1.1"},
{:ex_doc, "~> 0.20.0", only: :dev},
{:inch_ex, ">= 0.0.0", only: :docs},
{:excoveralls, "~> 0.6.3", only: :test}
]
end
end