-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmix.exs
More file actions
38 lines (34 loc) · 822 Bytes
/
mix.exs
File metadata and controls
38 lines (34 loc) · 822 Bytes
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
defmodule EctoFacade.Mixfile do
use Mix.Project
def project do
[
app: :ecto_facade,
version: "0.2.2",
description: "Ecto Facade Repository that allows to separate write from read operations",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ecto, ">= 2.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package() do
[
maintainers: ["Bart Lecki"],
licenses: ["MIT License"],
links: %{"GitHub" => "https://github.com/azranel/ecto_facade"},
source_url: "https://github.com/azranel/ecto_facade",
homepage_url: "https://github.com/azranel/ecto_facade"
]
end
end