-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
43 lines (40 loc) · 1.09 KB
/
mix.exs
File metadata and controls
43 lines (40 loc) · 1.09 KB
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
defmodule Mnesiaex.MixProject do
use Mix.Project
def project do
[
app: :mnesiaex,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
package: [
files: ["lib", ".formatter.exs", "mix.exs", "README.md", "LICENSE", "CHANGELOG.md"],
maintainers: ["beardedeagle"],
licenses: ["MIT"],
links: %{GitHub: "https://github.com/beardedeagle/mnesiaex"}
],
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"],
formatters: ["html", "epub"]
],
name: "Mnesiaex",
description: "Elixir ecto 3 adapter for mnesia.",
source_url: "https://github.com/beardedeagle/mnesiaex",
homepage_url: "https://hexdocs.pm/mnesiaex",
deps: deps()
]
end
def application do
[
extra_applications: [:logger, :mnesia]
]
end
defp deps do
[
{:credo, "~> 1.5", only: [:dev], runtime: false},
{:dialyxir, "~> 1.1", only: [:dev], runtime: false},
{:ecto, "~> 3.6"},
{:ex_doc, "~> 0.25", only: [:dev], runtime: false}
]
end
end