forked from livehelpnow/tds_ecto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
41 lines (36 loc) · 751 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
defmodule TDS.Ecto.Mixfile do
use Mix.Project
def project do
[
app: :tds_ecto,
version: "1.0.0",
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, "~> 1.0.0"},
{:tds, "~> 0.5.1"},
{:poison, only: :test}
]
end
defp description do
"""
MSSQL / TDS Adapter for Ecto.
"""
end
defp package do
[contributors: ["Justin Schneck"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/livehelpnow/tds_ecto"}]
end
end