forked from erpuno/hl7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
38 lines (33 loc) · 821 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
defmodule HL7.Mixfile do
use Mix.Project
def project do
[ app: :hl7,
version: "1.0.2",
elixir: ">= 1.9.0",
description: "ISO/HL7 FHIR Application Server",
deps: deps(),
package: package(),
releases: [release: [include_executables_for: [:unix], cookie: "ERP1:FHIR"]]
]
end
def package do
[ files: ["lib", "include", "priv", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Namdak Tonpa"],
licenses: ["ISC"],
links: %{"GitHub" => "https://github.com/erpuno/hl7"}
]
end
def application do
[ extra_applications: [:logger, :bandit],
mod: {HL7.Application,[]}
]
end
def deps do
[
{:ex_doc, "~> 0.21", only: :dev},
{:plug, "~> 1.15.3"},
{:bandit, "~> 1.0"},
{:jason, "~> 1.2"}
]
end
end