-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
47 lines (42 loc) · 1.14 KB
/
mix.exs
File metadata and controls
47 lines (42 loc) · 1.14 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
46
47
defmodule Reporter.Mixfile do
use Mix.Project
@version File.read!("VERSION") |> String.trim
def project do
[
app: :reporter,
version: @version,
elixir: "~> 1.4",
name: "Reporter",
source_url: "https://github.com/KazuCocoa/simple_app_reporter_ex",
description: "Simple getting reviews library from AppStore and GooglePlay",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package()
]
end
def application do
[
extra_applications: []
]
end
defp deps do
[
{:httpoison, "~> 0.8"},
{:poison, "~> 3.0"},
{:feeder_ex, "~> 1.0", runtime: false},
{:floki, "~> 0.8", runtime: false},
{:earmark, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.11", only: :dev, runtime: false},
{:dialyze, "~> 0.2.0", only: :dev, runtime: false}
]
end
defp package do
[
files: ~w(lib mix.exs README.md LICENSE VERSION),
maintainers: ["Kazuaki Matsuo"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/KazuCocoa/simple_app_reporter_ex"}
]
end
end