Current section
Files
Jump to
Current section
Files
emr_adapter
mix.exs
mix.exs
defmodule EmrAdapter.Mixfile do
use Mix.Project
@description """
Emr Adapter
"""
def project do
[
app: :emr_adapter,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
description: @description,
package: package(),
name: "Emr Adapter",
homepage_url: "/Users/zentechnamhoang/emr_adapter"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :httpoison, :sweet_xml]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:httpoison, "~> 0.13"},
{:sweet_xml, "~> 0.6.5"},
{:xml_builder, "~> 0.0.6"},
{:ex_doc, "~> 0.14", only: :dev}
]
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "emr_adapter",
# These are the default files included in the package
maintainers: ["Nam Hoang", "Tung Tran"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/zentechnamhoang/emr_adapter"}
]
end
end