-
Notifications
You must be signed in to change notification settings - Fork 12
/
mix.exs
37 lines (33 loc) · 889 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
defmodule Cronex.Mixfile do
use Mix.Project
def project do
[
app: :cronex,
version: "0.4.0",
elixir: "~> 1.7",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "Cronex",
description:
"A cron like system built in Elixir, that you can mount in your supervision tree",
source_url: "https://github.com/jbernardo95/cronex",
homepage_url: "https://github.com/jbernardo95/cronex",
docs: [main: "readme", extras: ["README.md", "CHANGELOG.md"]]
]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:ex_doc, "~> 0.14", only: :dev}]
end
def package do
[
maintainers: ["jbernardo95"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jbernardo95/cronex"}
]
end
end