Packages

Plug support for AbsinthePlugCache, the GraphQL toolkit for Elixir

Current section

Files

Jump to

mix.exs

defmodule AbsinthePlugCache.Plug.Mixfile do
use Mix.Project
@version "1.5.9"
def project do
[
app: :absinthe_plug_cache,
version: @version,
elixir: "~> 1.10",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
source_url: "https://github.com/absinthe-graphql/absinthe_plug",
docs: [source_ref: "v#{@version}", main: "AbsinthePlugCache.Plug"],
deps: deps()
]
end
defp package do
[
description: "Plug support for AbsinthePlugCache, the GraphQL toolkit for Elixir",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Ben Wilson", "Bruce Williams"],
licenses: ["MIT"],
links: %{
Website: "https://absinthe-graphql.org",
Changelog: "https://github.com/absinthe-graphql/absinthe_plug/blob/master/CHANGELOG.md",
GitHub: "https://github.com/absinthe-graphql/absinthe_plug"
}
]
end
def application do
[extra_applications: [:logger, :inets]]
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.5"},
{:plug, "~> 1.4"},
{:jason, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, "~> 0.20", only: :dev},
{:con_cache, ">= 0.14.0"}
]
end
end