Packages
gen_amqp
2.6.0
7.0.0
6.0.0
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.5.1
4.5.0
4.4.1
4.4.0
4.3.2
4.3.1
4.3.0
4.2.1
4.2.0
4.1.0
4.0.1
4.0.0
3.6.3
3.6.2
3.6.1
3.6.0
3.5.1
3.5.0
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.8.0
2.7.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.4
2.0.2
2.0.0
1.0.0
0.7.1
0.7.0
0.6.6
0.6.5
0.6.0
GenAMQP is a set of utilities to make microservices using the worker pattern
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule GenAMQP.Mixfile do
use Mix.Project
def project do
[
app: :gen_amqp,
version: "2.6.0",
elixir: "~> 1.6",
description: description(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls]
]
end
defp description do
"""
GenAMQP is a set of utilities to make microservices using the worker pattern
"""
end
def application do
if Mix.env() == :test do
[applications: [:logger, :amqp], mod: {DemoApp, []}]
else
[applications: [:logger, :amqp], mod: {GenAMQP, []}]
end
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:amqp, "~> 0.2.3"},
{:uuid, "~> 1.1"},
{:dialyxir, "~> 0.5", only: :dev},
{:credo, "~> 0.8", only: :dev},
{:ex_doc, "~> 0.14.5", only: :dev},
{:poison, "~> 3.0", only: :test},
{:excoveralls, "~> 0.5", only: :test},
{:gen_debug, "~> 0.2.0", only: :test}
]
end
defp package do
# These are the default files included in the package
[
name: :gen_amqp,
files: ["lib", "mix.exs", "README*"],
maintainers: ["Michel Perez"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/mrkaspa/gen_amqp"}
]
end
end