forked from CyrusNuevoDia/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (28 loc) · 736 Bytes
/
mix.exs
File metadata and controls
32 lines (28 loc) · 736 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
32
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: "0.3.0",
elixir: "~> 1.0",
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
def package do
[licenses: ["MIT"],
contributors: ["Kash Nouroozi"],
links: %{"GitHub" => "https://github.com/knrz/geocoder"}]
end
def application do
[applications: [:logger, :poolboy, :httpoison],
mod: {Geocoder, []}]
end
defp deps do
[{:httpoison, "~> 0.7"},
{:poison, "~> 1.4"},
{:towel, "~> 0.2"},
{:poolboy, "~> 1.5"}]
end
end