Packages

An elixir implementation of tar πŸ’

Current section

Files

Jump to
tabebuia mix.exs
Raw

mix.exs

defmodule Tabebuia.MixProject do
use Mix.Project
def project do
[
app: :tabebuia,
version: "0.1.1",
elixir: "~> 1.18",
description: "An elixir implementation of tar πŸ’",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
aliases: aliases()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp aliases do
[
# This makes "mix tabebuia" work
tabebuia: "tabebuia"
]
end
# Run "mix help deps" to learn about dependencies.
defp package do
[
licenses: ["MIT"],
description: "An elixir implementation of tar πŸ’",
links: %{"Github" => "https://github.com/GuilhermeTerriaga/tabebuia"}
]
end
defp deps do
[
{:ex_doc, "~> 0.29", only: :dev, runtime: false},
{:excoveralls, "~> 0.16", only: :test},
{:temp, "~> 0.4", only: :test},
{:stream_data, "~> 1.0", only: :test}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end