forked from elixir-protobuf/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
59 lines (51 loc) · 1.49 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
defmodule Protobuf.Mixfile do
use Mix.Project
@version "0.8.0-beta.1"
def project do
[
app: :protobuf,
version: @version,
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
dialyzer: [plt_add_apps: [:mix, :jason]],
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
escript: escript(),
description: description(),
package: package()
]
end
def application do
[
mod: {Protobuf.Application, []},
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support", "test/protobuf/protoc/proto_gen"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:jason, "~> 1.2", optional: true},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:eqc_ex, github: "tony612/eqc_ex", branch: "fix-elixir-1-10", only: [:dev, :test]}
]
end
defp escript do
[main_module: Protobuf.Protoc.CLI, name: "protoc-gen-elixir"]
end
defp description do
"A pure Elixir implementation of Google Protobuf."
end
defp package do
[
maintainers: ["Bing Han"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/tony612/protobuf-elixir"},
files:
~w(mix.exs README.md lib/google lib/protobuf lib/*.ex src LICENSE priv/templates .formatter.exs)
]
end
end