-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
36 lines (32 loc) · 847 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
defmodule CoverageReporter.MixProject do
use Mix.Project
@app :coverage_reporter
def project do
[
app: @app,
version: "0.1.0",
elixir: "~> 1.14",
deps: deps(),
test_coverage: [tool: LcovEx],
escript: [main_module: CoverageReporter]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:briefly, "~> 0.4.0", only: :test},
{:bypass, "~> 2.1", only: :test},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:jason, "~> 1.2"},
{:lcov_ex, "~> 0.3", only: [:dev, :test], runtime: false},
{:req, "~> 0.4.4"}
]
end
end