forked from absinthe-graphql/absinthe_relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
45 lines (38 loc) · 1.16 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
defmodule AbsintheRelay.Mixfile do
use Mix.Project
@version "1.3.0"
def project do
[app: :absinthe_relay,
version: @version,
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
docs: [source_ref: "v#{@version}", main: "Absinthe.Relay"],
deps: deps()]
end
defp package do
[description: "Relay framework support for Absinthe",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Bruce Williams"],
licenses: ["BSD"],
links: %{github: "https://github.com/absinthe-graphql/absinthe_relay"}]
end
def application do
[applications: [:logger, :absinthe]]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:absinthe, "~> 1.3.0"},
{:ecto, "~> 1.0 or ~> 2.0", optional: true},
{:poison, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, "~> 0.11.0", only: :dev},
{:earmark, "~> 0.2", only: :dev},
{:ex_spec, "~> 1.0.0", only: :test}
]
end
end