-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmix.exs
More file actions
125 lines (114 loc) · 2.97 KB
/
mix.exs
File metadata and controls
125 lines (114 loc) · 2.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
defmodule Bonny.MixProject do
use Mix.Project
@version "1.5.0"
@source_url "https://github.com/coryodaniel/bonny"
def project do
[
app: :bonny,
description: description(),
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
test_coverage: [tool: ExCoveralls],
docs: docs(),
package: package(),
aliases: aliases(),
dialyzer: [
plt_add_deps: :apps_direct,
plt_add_apps: [:mix, :eex, :owl, :yaml_elixir],
plt_file: {:no_warn, "priv/plts/project.plt"},
plt_core_path: "priv/plts"
],
xref: [exclude: [EEx]]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "examples"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger],
mod: {Bonny.Application, []}
]
end
defp aliases do
[
test: "test --no-start"
]
end
def cli do
[
preferred_envs: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.travis": :test,
"coveralls.github": :test,
"coveralls.xml": :test,
"coveralls.json": :test
]
]
end
defp deps do
[
{:inflex, "~> 2.0"},
{:jason, "~> 1.1"},
{:k8s, "~> 2.0"},
{:owl, "~> 0.13.0", runtime: false},
{:pluggable, "~> 1.0"},
{:telemetry, "~> 1.0"},
{:ymlr, "~> 5.0"},
# Dev deps
{:mix_test_watch, "~> 1.1", only: :dev, runtime: false},
{:dialyxir, "~> 1.4.1", only: [:dev, :test], runtime: false},
# {:ex_doc, "~> 0.23", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
# Test deps
{:excoveralls, "~> 0.14", only: :test}
]
end
defp package do
[
name: :bonny,
maintainers: ["Cory O'Daniel", "Michael Ruoss"],
licenses: ["MIT"],
links: %{
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md",
"GitHub" => @source_url
},
files: ["lib", "mix.exs", "priv", "README.md", "LICENSE", "CHANGELOG.md"]
]
end
defp docs do
[
main: "readme",
logo: "assets/bonny.png",
assets: %{"assets" => "assets"},
source_ref: "v#{@version}",
source_url: @source_url,
extras: [
"README.md",
"CHANGELOG.md",
"guides/contributing.md",
"guides/controllers.livemd",
"guides/crd_versions.livemd",
"guides/migrations.md",
"guides/mix_tasks.md",
"guides/testing.livemd",
"guides/the_operator.livemd"
],
groups_for_extras: [
Guides: Path.wildcard("guides/*.md")
]
]
end
defp description do
"""
Bonny: Kubernetes Operator Development Framework. Extend Kubernetes with Elixir
"""
end
end