-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
54 lines (48 loc) · 1.3 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
defmodule Okta.MixProject do
use Mix.Project
def project do
[
app: :okta_api,
version: "0.1.14",
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/variance-inc/okta-elixir",
docs: [main: "Okta"]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:tesla, :hackney, :logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:tesla, "~> 1.3"},
{:hackney, "~> 1.15"},
{:jason, ">= 1.0.0"},
{:plug, "~> 1.8", optional: true},
{:mox, "~> 0.5", only: :test}
]
end
defp description do
"Elixir SDK for Okta APIs"
end
defp package do
[
name: "okta_api",
# These are the default files included in the package
files: ~w(lib config .formatter.exs mix.exs README* LICENSE* ),
licenses: ["MIT License"],
links: %{"GitHub" => "https://github.com/variance-inc/okta-elixir"}
]
end
end