You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
767 B
34 lines
767 B
defmodule HomingPigeon.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :homingpigeon,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.10",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps(),
|
|
aliases: [test: "test --no-start"]
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
mod: {HomingPigeon, []},
|
|
extra_applications: [:logger]
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:nostrum, "~> 0.4"},
|
|
{:exirc, "~> 1.1.0"},
|
|
{:ex_machina, "~> 2.4", only: :test},
|
|
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
|
|
{:mock, "~> 0.3.5", only: :test},
|
|
{:mox, "~> 1.0", only: :test}
|
|
]
|
|
end
|
|
end
|
|
|