defmodule TDS.Ecto.Mixfile do use Mix.Project def project do [ app: :tds_ecto, version: "1.0.2", 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, github: "elixir-lang/ecto", tag: "v1.1.1"}, {:ecto, "~> 1.0"}, {:tds, "~> 0.5.4"}, #{:tds, path: "../tds"}, {:poison, "~> 1.0"} ] end defp description do """ MSSQL / TDS Adapter for Ecto. """ end defp package do [maintainers: ["Justin Schneck"], licenses: ["Apache 2.0"], links: %{"Github" => "https://github.com/livehelpnow/tds_ecto"}] end end