This repository has been archived by the owner on May 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
65 lines (60 loc) · 1.72 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
defmodule Elixir.MixProject do
use Mix.Project
def project do
[
app: :wiki_elixir,
version: "0.1.5",
elixir: "~> 1.8",
elixirc_paths: ~w(lib contrib),
start_permanent: Mix.env() == :prod,
description: description(),
deps: deps(),
package: package(),
source_url: "https://gitlab.com/adamwight/wiki_elixir",
dialyzer: [
plt_add_apps: ~w(cookie gen_stage jason tesla)a,
plt_core_path: "priv/plts/"
],
docs: [
extras: ~w(CHANGELOG.md README.md),
main: "readme"
],
preferred_cli_env: [coveralls: :test],
test_coverage: [tool: ExCoveralls]
]
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
[
{:cookie, "~> 0.0"},
{:credo, "~> 1.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:doctor, "~> 0.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.12", only: :test},
{:gen_stage, "~> 1.0"},
{:git_hooks, "~> 0.0", only: [:dev, :test]},
{:hackney, "~> 1.13"},
{:httpoison, "~> 1.0"},
{:jason, "~> 1.0"},
{:mox, "~> 0.5", only: :test},
{:tesla, "~> 1.0"}
]
end
defp description do
"Provides Elixir connectors to work with Wikipedia feeds."
end
defp package do
[
files: ~w(.formatter.exs contrib lib mix.exs *.md),
name: :wiki_elixir,
maintainers: ["adamwight"],
licenses: ["GPLv3"],
links: %{"GitLab" => "https://gitlab.com/adamwight/wiki_elixir"}
]
end
end