forked from zookzook/elixir-mongodb-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
71 lines (62 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
defmodule Mongodb.Mixfile do
use Mix.Project
@version "0.7.4"
def project() do
[app: :mongodb_driver,
version: @version,
elixirc_paths: elixirc_paths(Mix.env),
elixir: "~> 1.8",
name: "mongodb-driver",
deps: deps(),
docs: docs(),
description: description(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [docs: :docs, coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
dialyzer: [
flags: [:underspecs, :unknown, :unmatched_returns],
plt_add_apps: [:logger, :connection, :db_connection, :mix, :elixir, :ssl, :public_key],
plt_add_deps: :transitive,
plt_core_path: "plt_core_path"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application() do
[
applications: applications(Mix.env),
env: [],
extra_applications: [:crypto, :ssl],
mod: {Mongo.App, []}
]
end
def applications(:test), do: [:logger, :connection, :db_connection]
def applications(_), do: [:logger, :connection, :db_connection]
defp deps() do
[
{:db_connection, "~> 2.3"},
{:decimal, "~> 2.0"},
{:excoveralls, "~> 0.12.1", only: :test},
{:benchee, "~> 1.0", only: :dev},
{:jason, "~> 1.2", only: :test},
{:ex_doc, "~> 0.24 ", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false}
]
end
defp docs() do
[main: "readme",
extras: ["README.md"],
source_ref: "#{@version}",
source_url: "https://github.com/zookzook/elixir-mongodb-driver"]
end
defp description() do
"An alternative MongoDB driver for Elixir"
end
defp package() do
[maintainers: ["Michael Maier"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/zookzook/elixir-mongodb-driver"}]
end
end