-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
65 lines (58 loc) · 1.54 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
62
63
64
65
defmodule Shared.Ecto.MixProject do
use Mix.Project
def project do
[
app: :jehovakel_ex_ecto,
version: "1.0.0",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
test_paths: ["lib"],
test_coverage: [tool: ExCoveralls],
deps: deps(),
aliases: aliases(),
name: "Jehovakel EX Ecto",
source_url: "https://github.com/STUDITEMPS/jehovakel_ex_ecto",
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
[
{:ecto_sql, "~> 3.0"},
{:postgrex, "~> 0.13"},
{:timex, ">= 3.4.2"},
{:excoveralls, ">= 0.10.5", only: :test},
{:jason, ">= 0.0.0"}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
test: ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
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_ecto",
# These are the default files included in the package
licenses: ["MIT License"],
links: %{
"GitHub" => "https://github.com/STUDITEMPS/jehovakel_ex_ecto",
"Studitemps" => "https://tech.studitemps.de"
}
]
end
end