-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
61 lines (55 loc) · 1.67 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
54
55
56
57
58
59
60
61
defmodule JehovakelExTimes.MixProject do
use Mix.Project
def project do
[
app: :jehovakel_ex_times,
version: "1.0.4",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
test_paths: ["lib"],
test_coverage: [tool: ExCoveralls],
deps: deps(),
name: "Jehovakel EX Times",
source_url: "https://github.com/STUDITEMPS/jehovakel_ex_times",
description: description(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:timex, "~> 3.7"},
{:jason, "~> 1.0", optional: true},
{:excoveralls, ">= 0.10.5", only: :test},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:tix, ">= 0.0.0", only: :test, runtime: false},
# Property based Testing for Elixir (based upon PropEr)
{:propcheck, "~> 1.2", only: [:test]},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description do
"TODO: describe this package"
end
defp package do
[
# This option is only needed when you don't want to use the OTP application name
name: "jehovakel_ex_times",
# These are the default files included in the package
licenses: ["MIT License"],
links: %{
"GitHub" => "https://github.com/STUDITEMPS/jehovakel_ex_times",
"Studitemps" => "https://tech.studitemps.de"
}
]
end
end