-
Notifications
You must be signed in to change notification settings - Fork 13
/
mix.exs
34 lines (30 loc) · 815 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
defmodule HL7.Mixfile do
use Mix.Project
def project do
[app: :ex_hl7,
version: "1.0.0",
elixir: ">= 1.6.0",
description: "HL7 Parser for Elixir",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
consolidate_protocols: Mix.env != :test]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false},
{:ex_doc, "~> 0.21", only: :dev},
{:rexbug, "~> 1.0.3", only: :dev}
]
end
defp package do
[files: ["lib", "test", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Juan Jose Comellas"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/jcomellas/ex_hl7"}]
end
end