Packages
Elixir library defining Aggregate behaviour and providing extendable facility for aggregate command pipeline.
Current section
Files
Jump to
Current section
Files
helios_aggregate
mix.exs
mix.exs
defmodule Helios.Aggregate.MixProject do
use Mix.Project
@version "0.1.0"
@maintainers [
"Milan Jarić"
]
def project do
[
app: :helios_aggregate,
version: @version,
elixir: "~> 1.4 or ~> 1.5 or ~> 1.6 or ~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
name: "Helios Aggregate",
source_url: "https://github.com/exponentially/helios_aggregate",
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description() do
"Elixir library defining Aggregate behaviour and providing extendable facility for aggregate command pipeline."
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev}
]
end
defp package() do
[
maintainers: @maintainers,
licenses: ["Apache 2.0"],
links: %{ github: "https://github.com/exponentially/helios_aggregate"},
files: ~w(lib) ++ ~w(CHANGELOG.md LICENSE mix.exs README.md)
]
end
end