-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
44 lines (39 loc) · 978 Bytes
/
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
defmodule Oban.LiveDashboard.MixProject do
use Mix.Project
@source_url "https://github.com/evilmarty/oban_live_dashboard"
def project do
[
app: :oban_live_dashboard,
version: "0.2.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: "A simple Phoenix Live Dashboard for Oban jobs",
source_url: @source_url
]
end
def application do
[]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:phoenix_live_dashboard, "~> 0.7"},
{:floki, ">= 0.30.0", only: :test},
{:ecto_sqlite3, ">= 0.0.0", only: :test},
{:oban, "~> 2.15"},
{:jason, "~> 1.4.4"}
]
end
defp package do
[
maintainers: ["Marty Zalega"],
licenses: ["Apache-2.0"],
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
links: %{
GitHub: @source_url
}
]
end
end