Packages
gen_amqp
0.6.5
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: "0.6.5",
elixir: "~> 1.4",
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
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
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"]
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:amqp, "~> 0.2.0-pre.1"},
{:poison, "~> 2.0"},
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.12", only: :doc},
{:dialyxir, "~> 0.4.1", only: :dev},
{:credo, github: "rrrene/credo", only: :dev},
{:ex_doc, "~> 0.14.5", only: :dev},
{:excoveralls, "~> 0.5", only: :test},
{:gen_debug, "~> 0.1.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