-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmix.exs
More file actions
45 lines (40 loc) · 1.03 KB
/
mix.exs
File metadata and controls
45 lines (40 loc) · 1.03 KB
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
42
43
44
45
defmodule ExFix.Mixfile do
use Mix.Project
def project do
[
app: :ex_fix,
version: "0.2.9",
elixir: "~> 1.18",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
test_coverage: [summary: [threshold: 0]],
deps: deps()
]
end
def application do
[extra_applications: [:logger, :crypto], mod: {ExFix.Application, []}]
end
defp description do
"""
Elixir implementation of FIX Session Protocol FIXT.1.1
"""
end
defp package do
[
licenses: ["Apache 2"],
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Santiago Fernandez"],
links: %{GitHub: "https://github.com/santif/ex_fix"}
]
end
defp deps do
[
{:benchfella, "~> 0.3.5", only: :dev},
{:ex_doc, "~> 0.30", only: :dev, runtime: false},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
]
end
end