-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
61 lines (56 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
defmodule Journey.MixProject do
use Mix.Project
def project do
[
app: :journey,
version: "0.0.9",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: description(),
dialyzer_cache_directory: "priv/dialzer_cache",
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer_otp24_elixir1.12.1.plt"}
],
name: "Journey",
source_url: "https://github.com/shipworthy/journey",
docs: [
main: "Journey",
extras: ["README.md", "LICENSE"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Journey.Application, []},
extra_applications: [:logger]
]
end
defp description() do
"Journey simplifies writing and running persistent workflows."
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:docception, "~> 0.4.1", only: [:dev], runtime: false},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:ecto_sql, "~> 3.0"},
{:jason, "~> 1.2"},
{:postgrex, ">= 0.0.0"},
{:wait_for_it, "~> 1.3.0"}
]
end
def package do
[
name: "journey",
# These are the default files included in the package
# files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/shipworthy/journey"}
]
end
end