forked from emerleite/mongox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
38 lines (33 loc) · 858 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
36
37
38
defmodule Mongox.Mixfile do
use Mix.Project
def project do
[app: :mongox,
version: "0.2.0",
elixir: "~> 1.0",
deps: deps,
name: "MongoX",
source_url: "https://github.com/emerleite/mongox",
description: description,
test_coverage: [tool: ExCoveralls],
package: package]
end
def application do
[applications: [:logger, :connection],
mod: {Mongo, []},
env: []]
end
defp deps do
[{:connection, "~> 1.0"},
{:poolboy, "~> 1.5", optional: true},
{:excoveralls, "~> 0.5", only: :test},
{:ex_doc, github: "elixir-lang/ex_doc", only: :dev}]
end
defp description do
"MongoDB driver for Elixir."
end
defp package do
[maintainers: ["Emerson Macedo"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/emerleite/mongox"}]
end
end