-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
42 lines (36 loc) · 936 Bytes
/
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
defmodule AbsintheProto.MixProject do
use Mix.Project
def project do
[
app: :absinthe_proto,
version: "0.2.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixir_paths(Mix.env()),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
def elixir_paths(:absinthe_proto) do
~w(lib test/support test/protos)
end
def elixir_paths(:test),
do: ~w(lib test/support test/protos)
def elixir_paths(_),
do: ~w(lib)
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:protobuf, github: "tony612/protobuf-elixir", override: true, ref: "fd42cfdfa8eea19659fd89840a7010b635afaca0"},
# {:protobuf, ">= 0.0.0"},
{:grpc, ">= 0.0.0"},
{:google_protos, "~> 0.1"},
{:absinthe, "~>1.4"},
]
end
end