Current section

Files

Jump to
Raw

mix.exs

defmodule WaitForIt.Mixfile do
use Mix.Project
def project do
[
app: :wait_for_it,
version: "1.1.1",
description: "Elixir library for waiting for things to happen",
source_url: "https://github.com/jvoegele/wait_for_it",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {WaitForIt.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.18", only: :dev, runtime: false},
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
{:stream_data, "~> 0.4", only: [:dev, :test]}
]
end
defp package do
[
name: :wait_for_it,
files: ["lib", "mix.exs", "README.md", "LICENSE", "CHANGELOG.md"],
maintainers: ["Jason Voegele"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/jvoegele/wait_for_it"}
]
end
end