forked from dantswain/mix_eunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
33 lines (30 loc) · 689 Bytes
/
mix.exs
File metadata and controls
33 lines (30 loc) · 689 Bytes
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
defmodule MixEunit.Mixfile do
use Mix.Project
def project do
[app: :mix_eunit,
version: "0.3.0",
elixir: "~> 1.0",
description: "A mix task to run eunit tests, works for umbrella projects",
package: package(),
deps: deps()]
end
defp package do
[
files: [
"LICENSE",
"mix.exs",
"README.md",
"lib"
],
maintainers: ["Dan Swain"],
links: %{"github" => "https://github.com/dantswain/mix_eunit"},
licenses: ["MIT"]
]
end
defp deps do
[
{:eunit_formatters, "~> 0.3.1"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end