Packages

A pure Elixir implementation of the AWS Java Kinesis Client Library (KCL)

Current section

Files

Jump to
Raw

mix.exs

defmodule KinesisClient.Mixfile do
use Mix.Project
def project do
[
app: :kinesis_client,
version: "1.0.0-rc.0",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
package: package(),
description: description(),
deps: deps(),
source_url: "https://github.com/uberbrodt/kcl_ex",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def description do
"""
A pure Elixir implementation of the AWS Java Kinesis Client Library (KCL)
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
licenses: ["Apache 2.0"],
maintainers: ["Chris Brodt"],
links: %{Github: "https://github.com/uberbrodt/kcl_ex"}
]
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
[
{:broadway, "~> 0.6.0"},
{:configparser_ex, "~> 4.0"},
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_aws, "~> 2.0"},
{:ex_aws_dynamo, "~> 3.0"},
{:ex_aws_kinesis, "~> 2.0"},
{:excoveralls, "~> 0.10", only: :test},
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:hackney, "~> 1.9"},
{:jason, "~> 1.1"},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:mox, "~> 0.5", only: :test}
]
end
end