Packages
distillery
1.2.2
2.1.1
2.1.0
2.0.14
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
retired
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-rc.12
2.0.0-rc.11
2.0.0-rc.10
2.0.0-rc.8
2.0.0-rc.7
2.0.0-rc.6
2.0.0-rc.5
2.0.0-rc.4
2.0.0-rc.3
2.0.0-rc.2
2.0.0-rc.1
retired
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.1
1.4.0
1.3.5
1.3.4
1.3.3
retired
1.3.2
retired
1.3.1
1.3.0
1.2.2
1.2.0
1.1.2
1.1.0
1.0.0
0.10.1
0.10.0
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.0
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.8
0.6.7
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
Build releases of your Mix projects with ease!
Current section
Files
Jump to
Current section
Files
distillery
mix.exs
mix.exs
defmodule Distillery.Mixfile do
use Mix.Project
def project do
[app: :distillery,
version: "1.2.2",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
aliases: aliases(),
test_coverage: [tool: ExCoveralls]]
end
def application, do: [applications: []]
defp deps do
[{:ex_doc, "~> 0.13", only: [:dev]},
{:excoveralls, "~> 0.6", only: [:dev, :test]},
{:credo, "~> 0.6", only: [:dev]},
{:dialyze, "~> 0.2", only: [:dev]}]
end
defp description do
"""
Build releases of your Mix projects with ease!
"""
end
defp package do
[ files: ["lib", "priv", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Paul Schoenfelder"],
licenses: ["MIT"],
links: %{"Github": "https://github.com/bitwalker/distillery"}]
end
defp aliases do
["compile-check": "do compile, credo --strict"]
end
defp docs do
[main: "getting-started",
extras: [
"docs/Getting Started.md",
"docs/CLI.md",
"docs/Configuration.md",
"docs/Runtime Configuration.md",
"docs/Walkthrough.md",
"docs/Use With Phoenix.md",
"docs/Phoenix Walkthrough.md",
"docs/Running Migrations.md",
"docs/Upgrades and Downgrades.md",
"docs/Use With systemd.md",
"docs/Common Issues.md",
"docs/Umbrella Projects.md",
"docs/Overlays.md",
"docs/Plugins.md",
"docs/Boot Hooks.md",
"docs/Custom Commands.md",
"docs/Shell Script API.md",
"docs/Terminology.md"
]]
end
end