-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmix.exs
47 lines (41 loc) · 980 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
defmodule TDS.Ecto.Mixfile do
use Mix.Project
@version "2.3.0"
def project() do
[
app: :tds_ecto,
version: @version,
elixir: "~> 1.0",
deps: deps(),
description: description(),
package: package()
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application() do
[applications: [:tds, :ecto]]
end
defp deps() do
[
{:ecto, "~> 2.0"},
{:tds, "~> 1.2"},
# {:tds, path: "../tds"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:poison, ">= 0.0.0", only: :test}
]
end
defp description() do
"""
Ecto 2 Adapter for Microsoft SQL Server
"""
end
defp package() do
[ name: "tds_ecto",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Justin Schneck", "Eric Witchin", "Milan Jaric"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/livehelpnow/tds_ecto"}]
end
end