-
Notifications
You must be signed in to change notification settings - Fork 155
/
mix.exs
83 lines (74 loc) · 1.89 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
72
73
74
75
76
77
78
79
80
81
82
83
defmodule Mongodb.Mixfile do
use Mix.Project
@version "1.0.1"
def project do
[
app: :mongodb,
version: @version,
elixirc_paths: elixirc_paths(Mix.env()),
elixir: "~> 1.5",
name: "Mongodb",
deps: deps(),
docs: docs(),
description: description(),
package: package(),
dialyzer: dialyzer(),
consolidate_protocols: Mix.env() != :test,
test_coverage: [summary: [threshold: 70]]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
mod: {Mongo.App, []},
env: [],
extra_applications: [:crypto, :logger, :ssl],
registered: [
Mongo.PBKDF2Cache,
Mongo.Session.Supervisor,
Mongo.Events,
Mongo.IdServer,
Mongo.SessionPool
]
]
end
defp deps do
[
{:credo, "~> 1.5.6", only: [:dev, :test], runtime: false},
{:db_connection, "~> 2.4"},
{:decimal, "~> 2.0.0"},
{:dialyxir, "~> 1.1.0", only: :dev, runtime: false},
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev},
{:jason, "~> 1.2.2", only: [:dev, :test]}
]
end
defp docs do
[
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}",
source_url: "https://github.com/elixir-mongo/mongodb"
]
end
defp description do
"MongoDB driver for Elixir"
end
defp package do
[
maintainers: ["Eric Meadows-Jönsson", "Justin Wood"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/elixir-mongo/mongodb"}
]
end
# Configures dialyzer.
#
# The `dialyzer.plt` file takes a long time to generate first time round, so we store it in a
# custom location where it can then be easily cached during CI.
defp dialyzer do
[
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
]
end
end