forked from ingerslevio/kubex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
40 lines (35 loc) · 946 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
defmodule Kubex.Mixfile do
use Mix.Project
def project do
[app: :kubex,
version: "0.1.1",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description,
package: package,
deps: deps]
end
def application do
[applications: [:logger, :httpoison],
mod: {KubexApp, []} ]
end
defp deps do
[{:httpoison, "~> 0.9"},
{:poison, "~> 1.5 or ~> 2.0"},
{:cowboy, "~> 1.0", only: :test},
{:plug, "~> 1.2", only: :test}]
end
defp description do
"""
Kubernetes integration for and in pure Elixir.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
contributors: ["Emil Ingerslev"],
licenses: ["LGPLv3"],
links: %{"GitHub" => "https://github.com/ingerslevio/kubex"}]
end
end