forked from ex-aws/ex_aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
55 lines (48 loc) · 1.53 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
55
defmodule ExAws.Mixfile do
use Mix.Project
@version "1.0.0-rc.4"
def project do
[app: :ex_aws,
version: @version,
elixir: "~> 1.0",
elixirc_paths: elixirc_paths(Mix.env),
description: "AWS client. Currently supports Dynamo, EC2, Kinesis, Lambda, RDS, S3, SNS, SQS",
name: "ExAws",
source_url: "https://github.com/cargosense/ex_aws",
package: package,
dialyzer: [flags: "--fullpath"],
deps: deps,
docs: [main: "ExAws", source_ref: "v#{@version}",
source_url: "https://github.com/cargosense/ex_aws"]
]
end
def application do
[applications: [:logger, :crypto, :gen_stage],
mod: {ExAws, []}]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib",]
defp deps do
deps(:test_dev)
end
defp deps(:test_dev) do
[
{:sweet_xml, "~> 0.5", optional: true},
{:ex_doc, "~> 0.14", only: :dev},
{:hackney, "~> 1.5", optional: true},
{:poison, "~> 1.2 or ~> 2.0", optional: true},
{:jsx, "~> 2.8", optional: true},
{:gen_stage, "~> 0.8.0"},
{:dialyze, "~> 0.2.0", only: :dev},
{:bypass, "~> 0.1", only: :test},
{:configparser_ex, "~> 0.2.1", optional: true},
]
end
defp package do
[description: "AWS client. Currently supports Dynamo, EC2, Kinesis, Lambda, RDS, S3, SNS, SQS",
files: ["lib", "config", "mix.exs", "README*"],
maintainers: ["Ben Wilson"],
licenses: ["MIT"],
links: %{github: "https://github.com/CargoSense/ex_aws"}]
end
end