Packages

AWS Support service for ex_aws

Current section

Files

Jump to
Raw

mix.exs

defmodule ExAwsSupport.MixProject do
use Mix.Project
@version "2.0.0"
def project do
[
app: :ex_aws_support,
version: @version,
elixir: "~> 1.4",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
source_url: "https://github.com/fmcgeough/ex_aws_support",
homepage_url: "https://github.com/fmcgeough/ex_aws_support",
docs: [
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}"
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [: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
[
{:hackney, "1.6.3 or 1.6.5 or 1.7.1 or 1.8.6 or ~> 1.9", only: [:dev, :test]},
{:poison, ">= 1.2.0", optional: true},
{:ex_doc, "~> 0.19.2", only: [:dev, :test]},
{:ex_aws, "~> 2.0"},
{:dialyxir, "~> 0.5", only: [:dev]}
]
end
defp package do
[
description: "AWS Support service for ex_aws",
maintainers: ["Frank McGeough"],
licenses: ["MIT"],
links: %{github: "https://github.com/fmcgeough/ex_aws_support"}
]
end
end