Current section
Files
Jump to
Current section
Files
libcluster_consul
mix.exs
mix.exs
defmodule ClusterConsul.MixProject do
use Mix.Project
def project do
[
app: :libcluster_consul,
version: "1.0.1",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: "https://github.com/team-telnyx/libcluster_consul",
description: description()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:libcluster, "~> 3.2"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"""
Consul strategy for libcluster
"""
end
defp package do
[
maintainers: ["Guilherme Balena Versiani <guilherme@telnyx.com>"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/team-telnyx/libcluster_consul"},
files: ~w"lib mix.exs README.md LICENSE"
]
end
end