forked from elixir-protobuf/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
70 lines (61 loc) · 1.66 KB
/
Copy pathmix.exs
File metadata and controls
70 lines (61 loc) · 1.66 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
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
defmodule Protobuf.Mixfile do
use Mix.Project
@source_url "https://github.com/elixir-protobuf/protobuf"
@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(),
docs: docs()
]
end
def application do
[
mod: {Protobuf.Application, []},
extra_applications: [:logger, :eex]
]
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.5", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:stream_data, "~> 0.5.0", 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"],
files:
~w(mix.exs README.md lib/google lib/protobuf lib/*.ex src LICENSE priv/templates .formatter.exs),
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: ["README.md"],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}"
]
end
end