-
Notifications
You must be signed in to change notification settings - Fork 49
/
mix.exs
129 lines (117 loc) · 3.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
defmodule BoltSips.Mixfile do
use Mix.Project
@version "2.1.0"
@url_docs "https://hexdocs.pm/bolt_sips"
@url_github "https://github.com/florinpatrascu/bolt_sips"
def project do
[
app: :bolt_sips,
version: @version,
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
package: package(),
description: "Neo4j driver for Elixir, using the fast Bolt protocol",
name: "Bolt.Sips",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
docs: docs(),
dialyzer: [plt_add_apps: [:jason, :poison, :mix], ignore_warnings: ".dialyzer_ignore.exs"],
test_coverage: [
tool: ExCoveralls
],
preferred_cli_env: [
bench: :bench,
credo: :dev,
bolt_sips: :test,
coveralls: :test,
"coveralls.html": :test,
"coveralls.travis": :test
],
aliases: aliases()
]
end
def application do
[
extra_applications: [ :logger ]
]
end
defp aliases do
[
test: [
"test --exclude bolt_v1 --exclude routing --exclude boltkit --exclude enterprise"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp package do
%{
files: [
"lib",
"mix.exs",
"LICENSE"
],
licenses: ["Apache 2.0"],
maintainers: [
"Florin T.PATRASCU",
"Dmitriy Nesteryuk",
"Dominique VASSARD",
"Kristof Semjen"
],
links: %{
"Docs" => @url_docs,
"Github" => @url_github
}
}
end
defp docs do
[
name: "Bolt.Sips",
logo: "assets/bolt_sips_white_transparent.png",
assets: "assets",
source_ref: "v#{@version}",
source_url: @url_github,
main: "Bolt.Sips",
extra_section: "guides",
extras: [
"README.md",
"CHANGELOG.md",
"docs/getting-started.md",
"docs/features/configuration.md",
"docs/features/using-cypher.md",
"docs/features/using-temporal-and-spatial-types.md",
"docs/features/about-transactions.md",
"docs/features/about-encoding.md",
"docs/features/routing.md",
"docs/features/multi-tenancy.md",
"docs/features/using-with-phoenix.md"
]
]
end
# Type "mix help deps" for more examples and options
defp deps do
[
{:db_connection, "~> 2.4.2"},
{:jason, "~> 1.4", optional: true},
{:poison, "~> 5.0", optional: true},
# Testing dependencies
{:excoveralls, "~> 0.15.0", optional: true, only: [:test, :dev]},
{:mix_test_watch, "~> 1.1.0", only: [:dev, :test]},
{:porcelain, "~> 2.0.3", only: [:test, :dev], runtime: false},
{:uuid, "~> 1.1.8", only: [:test, :dev], runtime: false},
{:tzdata, "~> 1.1", only: [:test, :dev]},
# Benchmarking dependencies
{:benchee, "~> 1.1.0", optional: true, only: [:dev, :test]},
{:benchee_html, "~> 1.0.0", optional: true, only: [:dev]},
# Linting dependencies
{:credo, "~> 1.6.7", only: [:dev]},
{:dialyxir, "~> 1.2.0", only: [:dev], runtime: false},
# mix eye_drops
{:eye_drops, github: "florinpatrascu/eye_drops", only: [:dev, :test], runtime: false},
# Documentation dependencies
# Run me like this: `mix docs`
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
end