-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
67 lines (59 loc) · 1.61 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
defmodule EventSerializer.MixProject do
use Mix.Project
def project do
[
app: :event_serializer,
version: "2.0.3",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
description: description(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {EventSerializer.Application, []},
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:avlizer, "~> 0.2.1"},
{:poison, "~> 3.1.0"},
{:tesla, "~> 1.2.0"},
{:env_config, "~> 0.1.0"},
{:ex_doc, ">=0.0.0", only: :dev, runtime: false},
{:credo, "~> 0.9.1", only: [:dev, :test], runtime: false}
]
end
defp description, do: "Encode and decode events from Kafka"
defp package do
[
name: "event_serializer",
files: ["lib", "mix.exs", "CHANGELOG*", "LICENSE*", "README*"],
maintainers: ["@luizvarela", "@ianvaughan", "@danhawkins", "@thau"],
licenses: ["MIT"],
source_url: "https://github.com/quiqupltd/event_serializer",
links: %{"GitHub" => "https://github.com/quiqupltd/event_serializer"}
]
end
defp aliases do
[
test: ["test"],
consistency: consistency()
]
end
defp consistency do
[
"credo --strict"
]
end
end