Current section

Files

Jump to
exq_batch mix.exs
Raw

mix.exs

defmodule ExqBatch.MixProject do
use Mix.Project
def project do
[
app: :exq_batch,
version: "0.1.3",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Monitors group of Exq jobs",
docs: [
main: "readme",
extras: ["README.md"]
],
package: %{
licenses: ["MIT"],
links: %{"Github" => "https://github.com/ananthakumaran/exq_batch"},
maintainers: ["ananthakumaran@gmail.com"]
},
source_url: "https://github.com/ananthakumaran/exq_batch"
]
end
def application do
[
extra_applications: [:logger],
mod: {ExqBatch.Application, []}
]
end
defp deps do
[
{:exq, "~> 0.14"},
{:elixir_uuid, "~> 1.2"},
{:redix, ">= 0.9.0"},
{:telemetry, "~> 0.4 or ~> 1.0"},
{:jason, "~> 1.0"},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.22.0", only: :dev, runtime: false}
]
end
end