forked from spreedly/kaffe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
44 lines (39 loc) · 1.12 KB
/
mix.exs
File metadata and controls
44 lines (39 loc) · 1.12 KB
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
defmodule Kaffe.Mixfile do
use Mix.Project
def project do
[
app: :kaffe,
version: "1.20.0",
description:
"An opinionated Elixir wrapper around brod, the Erlang Kafka client, that supports encrypted connections to Heroku Kafka out of the box.",
name: "Kaffe",
source_url: "https://github.com/spreedly/kaffe",
package: package(),
elixir: "~> 1.7",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps()
]
end
def application do
[applications: [:logger, :brod, :retry], mod: {Kaffe, []}]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp deps do
[
{:brod, "~> 3.0"},
{:ex_doc, "~> 0.20", only: :dev, runtime: false},
{:retry, "~> 0.14.1"}
]
end
defp package do
[
name: :kaffe,
licenses: ["MIT License"],
maintainers: ["Kevin Lewis", "David Santoso", "Ryan Daigle", "Spreedly", "Joe Peck"],
links: %{"GitHub" => "https://github.com/spreedly/kaffe"}
]
end
end