-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmix.exs
More file actions
42 lines (37 loc) · 830 Bytes
/
mix.exs
File metadata and controls
42 lines (37 loc) · 830 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
34
35
36
37
38
39
40
41
42
defmodule MixGrisp.MixProject do
use Mix.Project
@source_url "https://github.com/grisp/mix_grisp"
def project() do
[
app: :mix_grisp,
version: "0.2.0",
description: "Mix plug-in for GRiSP.",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: @source_url
]
end
def application() do
[
extra_applications: [:logger, :xmerl]
]
end
defp deps() do
[
{:grisp_tools, "~> 2.8"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["Apache 2.0"],
links: %{
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md"
}
]
end
end