-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
47 lines (41 loc) · 1.25 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#-------------------------------------------------------------------------------
# Author: Keith Brings
# Copyright (C) 2018 Noizu Labs, Inc. All rights reserved.
#-------------------------------------------------------------------------------
defmodule Noizu.RuleEngine.Mixfile do
use Mix.Project
def project do
[app: :noizu_rule_engine,
version: "0.2.3",
elixir: "~> 1.13",
package: package(),
deps: deps(),
description: "Noizu Rule Engine",
docs: docs()
]
end # end project
defp package do
[
maintainers: ["noizu"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/noizu/RuleEngine"}
]
end # end package
def application do
[ applications: [:logger] ++ (Mix.env in [:dev, :test] && [:ex_doc] || []) ]
end # end application
defp deps do
[
{:ex_doc, "~> 0.28.3", only: [:dev, :test], runtime: false}, # Documentation Provider
{:noizu_core, "~> 1.0"},
{:plug, "~> 1.0", optional: true},
{:elixir_uuid, "~> 1.2", only: :test, optional: true}
]
end # end deps
defp docs do
[
source_url_pattern: "https://github.com/noizu-labs/RuleEngine/blob/master/%{path}#L%{line}",
extras: ["README.md"]
]
end # end docs
end # end defmodule