-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
53 lines (46 loc) · 1002 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
defmodule Firebirdex.Mixfile do
use Mix.Project
@version "0.3.11"
def project() do
[
app: :firebirdex,
version: @version,
elixir: "~> 1.4",
name: "Firebirdex",
description: "Firebird driver for Elixir",
source_url: "https://github.com/nakagami/firebirdex",
package: package(),
docs: docs(),
deps: deps()
]
end
def application() do
[
extra_applications: [:logger],
]
end
defp package do
[
maintainers: ["Hajime Nakagami"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/nakagami/firebirdex"}
]
end
defp docs() do
[
source_ref: "v#{@version}",
main: "readme",
extras: ["README.md"]
]
end
defp deps() do
[
{:db_connection, "~> 2.4"},
{:decimal, "~> 2.1"},
{:timex, "~> 3.7"},
{:efirebirdsql, "~> 0.9"},
{:codepagex, "~> 0.1.9"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end