forked from hexpm/hexdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
64 lines (58 loc) · 1.23 KB
/
mix.exs
File metadata and controls
64 lines (58 loc) · 1.23 KB
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
62
63
64
defmodule Hexdocs.MixProject do
use Mix.Project
def project do
[
app: :hexdocs,
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
releases: releases(),
aliases: aliases(),
deps: deps()
]
end
def application do
[
extra_applications: [:eex, :logger, :runtime_tools, :inets],
mod: {Hexdocs.Application, []}
]
end
def cli do
[
preferred_envs: [
"test.all": :test
]
]
end
defp aliases do
[
"test.all": ["test --include typesense --include integration"]
]
end
defp deps do
[
{:broadway, "~> 1.0"},
{:broadway_sqs, "~> 0.7.0"},
{:ex_aws, "~> 2.0"},
{:ex_aws_s3, "~> 2.0"},
{:ex_aws_sqs, "~> 3.0"},
{:goth, "~> 1.0"},
{:hackney, "~> 1.13"},
{:logster, "~> 1.0"},
{:plug_cowboy, "~> 2.0"},
{:sentry, "~> 11.0"},
{:ssl_verify_fun, "~> 1.1", manager: :rebar3, override: true},
{:sweet_xml, "~> 0.7.0"},
{:hex_core, "~> 0.11.0"},
{:mox, "~> 1.0", only: :test}
]
end
defp releases() do
[
hexdocs: [
include_executables_for: [:unix],
reboot_system_after_config: true
]
]
end
end