-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
46 lines (40 loc) · 1014 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
45
46
defmodule ArcAliyunOss.MixProject do
use Mix.Project
@project_host "https://github.com/GreenNerd-Labs/arc_aliyun_oss"
@version "0.2.1"
def project do
[
app: :arc_aliyun_oss,
version: @version,
source_url: @project_host,
homepage_url: @project_host,
description: description(),
package: package(),
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[]
end
defp deps do
[
{:alixir_oss, github: "GreenNerd-Labs/alixir_oss", branch: "develop"},
{:ex_arc, "~> 0.0.2", github: "GreenNerd-Labs/ex_arc", branch: "develop"},
{:httpoison, "~> 1.2.0", override: true}
]
end
defp description do
"Aliyun OSS provider for Arc"
end
defp package do
[
name: :arc_aliyun_oss,
files: ["lib", "mix.exs", "README.md", "MIT-LICENSE"],
maintainers: ["CptBreeza"],
licenses: ["MIT"],
links: %{"GitHub" => @project_host}
]
end
end