-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
53 lines (47 loc) · 1.13 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
defmodule Obanalyze.MixProject do
use Mix.Project
@version "1.4.2"
@source_url "https://github.com/egze/obanalyze"
def project do
[
app: :obanalyze,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "Obanalyze",
docs: docs(),
description: "Real-time Monitoring for Oban with Phoenix.LiveDashboard",
source_url: @source_url
]
end
def application do
[]
end
defp docs do
[
main: "Obanalyze",
source_ref: "v#{@version}",
source_url: @source_url,
nest_modules_by_prefix: [Obanalyze]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:phoenix_live_dashboard, ">= 0.8.5"},
{:floki, ">= 0.30.0", only: :test},
{:ecto_sqlite3, ">= 0.0.0", only: :test},
{:oban, "~> 2.15"}
]
end
defp package do
[
maintainers: ["Aleksandr Lossenko"],
licenses: ["MIT"],
links: %{github: "https://github.com/egze/obanalyze"},
files: ~w(lib CHANGELOG.md LICENSE.md mix.exs README.md)
]
end
end