-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
53 lines (47 loc) · 1.32 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
#-*-Mode:elixir;coding:utf-8;tab-width:2;c-basic-offset:2;indent-tabs-mode:()-*-
# ex: set ft=elixir fenc=utf-8 sts=2 ts=2 sw=2 et nomod:
defmodule CloudIServiceOauth1 do
use Mix.Project
def project do
[app: :cloudi_service_oauth1,
version: "2.0.7",
language: :erlang,
erlc_options: [
{:d, :erlang.list_to_atom('ERLANG_OTP_VERSION_' ++ :erlang.system_info(:otp_release))},
:deterministic,
:debug_info,
:warn_export_vars,
:warn_unused_import,
#:warn_missing_spec,
:warnings_as_errors],
description: description(),
package: package(),
deps: deps()]
end
def application do
[applications: [
:cloudi_core,
:cowlib,
:jsx,
:crypto,
:public_key,
:inets]]
end
defp deps do
[{:cloudi_service_db_pgsql, ">= 2.0.7"},
{:cowlib, ">= 2.11.0"},
{:jsx, ">= 3.1.0"},
{:cloudi_core, ">= 2.0.7"}]
end
defp description do
"Erlang/Elixir Cloud Framework OAuth v1.0 Service"
end
defp package do
[files: ~w(src doc test rebar.config README.markdown LICENSE),
maintainers: ["Michael Truog"],
licenses: ["MIT"],
links: %{"Website" => "https://cloudi.org",
"GitHub" => "https://github.com/CloudI/" <>
"cloudi_service_oauth1"}]
end
end