Current section

Files

Jump to
Raw

mix.exs

defmodule Fountainedge.MixProject do
use Mix.Project
def project do
[
app: :fountainedge,
name: "Fountainedge",
organization: "Emden Norfolk Computing Systems",
version: "1.0.6",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/emden-norfolk/fountainedge",
docs: [
extras: [
"README.md",
"examples/EXAMPLE1.md",
],
source_ref: "master",
authors: [
"Damien BEZBORODOV",
],
],
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :stream_data]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:graphvix, "~> 1.0.0"},
{:decimal, "~> 1.0"},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:stream_data, "~> 0.1"}
]
end
defp description() do
"Workflow engine with conditions, forks and parallel processes."
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "fountainedge",
# These are the default files included in the package
files: ~w(lib mix.exs priv README.md),
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/emden-norfolk/fountainedge"}
]
end
end