-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
44 lines (38 loc) · 1009 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
37
38
39
40
41
42
43
44
defmodule ExMicrosoftAzureManagementGenerator.MixProject do
use Mix.Project
@source_url "https://github.com/chgeuer/ex_microsoft_azure_management_generator"
def project do
[
app: :ex_microsoft_azure_management_generator,
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
source_url: @source_url,
deps: deps()
]
end
def application do
[
extra_applications: [:logger, :inets]
]
end
defp description() do
"An SDK generator for the Microsoft Azure platform's resource management API (ARM)."
end
defp package() do
[
files: ["lib", "mix.exs", "README*", "LICENSE*", "swagger.json", "generate.*"],
maintainers: ["Christian Geuer-Pollmann"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @source_url}
]
end
defp deps do
[
{:poison, ">= 1.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end