forked from whatyouhide/xandra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
81 lines (67 loc) · 1.69 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
defmodule Xandra.Mixfile do
use Mix.Project
@description "Fast, simple, and robust Cassandra driver for Elixir."
@repo_url "https://github.com/lexhide/xandra"
@version "0.14.0"
def project() do
[
app: :xandra,
version: @version,
elixir: "~> 1.9",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
# Task aliases
aliases: aliases(),
# Dialyzer
dialyzer: [flags: [:no_contracts]],
# Testing
preferred_cli_env: [
"test.scylladb": :test,
"test.clustering": :test,
"coveralls.html": :test
],
test_coverage: [tool: ExCoveralls],
# Hex
package: package(),
description: @description,
# Docs
name: "Xandra",
docs: [
main: "Xandra",
source_ref: "v#{@version}",
source_url: @repo_url,
extras: [
"pages/Data types comparison table.md"
]
]
]
end
def application() do
[extra_applications: [:logger]]
end
defp package() do
[
maintainers: ["Aleksei Magusev", "Andrea Leopardi"],
licenses: ["ISC"],
links: %{"GitHub" => @repo_url}
]
end
defp aliases() do
[
"test.scylladb": "test --exclude encryption --exclude cassandra_specific",
"test.clustering": "run test_clustering/run.exs"
]
end
defp deps() do
[
{:db_connection, "~> 2.0"},
{:decimal, "~> 1.7", optional: true},
{:nimble_options, "~> 0.4.0"},
# Dev and test dependencies
{:ex_doc, "~> 0.28", only: :dev},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:excoveralls, "~> 0.14.4", only: :test}
]
end
end