forked from xerions/mariaex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
37 lines (32 loc) · 912 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 Mariaex.Mixfile do
use Mix.Project
def project do
[app: :mariaex,
version: "0.8.2",
elixir: "~> 1.2",
deps: deps(),
name: "Mariaex",
source_url: "https://github.com/liveforeverx/mariaex",
test_coverage: [tool: Coverex.Task, coveralls: true],
description: description(),
package: package()]
end
# Configuration for the OTP application
def application do
[applications: [:logger, :crypto, :decimal, :db_connection]]
end
defp deps do
[{:decimal, "~> 1.0"},
{:db_connection, "~> 1.1"},
{:coverex, "~> 1.4.10", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}]
end
defp description do
"Pure elixir database driver for MariaDB / MySQL."
end
defp package do
[maintainers: ["Dmitry Russ(Aleksandrov)"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/xerions/mariaex"}]
end
end