elixir-thrift/mix.exs

90 lines
2.2 KiB
Elixir
Raw Normal View History

2015-01-07 01:44:59 +00:00
defmodule Thrift.Mixfile do
@moduledoc false
2015-01-07 01:44:59 +00:00
use Mix.Project
@description """
Elixir implementation of the Thrift service framework
This package includes support for parsing Thrift IDL files, working with the
Thrift binary protocol, and building high-performance clients and servers.
"""
@version "2.0.0-dev"
@project_url "https://github.com/pinterest/elixir-thrift"
2015-01-07 01:44:59 +00:00
def project do
[app: :thrift,
version: @version,
elixir: "~> 1.3",
deps: deps(),
# Build Environment
erlc_paths: erlc_paths(Mix.env),
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:leex, :yecc, :erlang, :elixir, :app],
# Testing
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"bench": :test,
"coveralls": :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.post": :test],
# URLs
source_url: @project_url,
homepage_url: @project_url,
# Hex
description: @description,
package: package(),
2016-02-02 18:34:09 +00:00
# Dialyzer
dialyzer: [
plt_add_deps: :transitive,
plt_add_apps: [:mix],
ignore_warnings: ".dialyzerignore"],
2016-02-02 18:34:09 +00:00
# Docs
name: "Thrift",
docs: [
main: "README",
extras: ["README.md": [group: "Documents", title: "README"]],
source_ref: "thrift_tng",
source_url: @project_url]]
2015-01-07 01:44:59 +00:00
end
def application do
[
applications: [:logger, :connection, :ranch],
]
end
defp erlc_paths(:test), do: ["src", "test/support/src"]
defp erlc_paths(_), do: ["src"]
defp elixirc_paths(:test), do: ["lib", "test/support/lib"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[{:ex_doc, "~> 0.14", only: :dev},
{:excoveralls, "~> 0.6", only: [:dev, :test]},
{:credo, "~> 0.6", only: [:dev, :test]},
2016-12-29 17:22:40 +00:00
{:dialyxir, "~> 0.4", only: :dev, runtime: false},
{:benchfella, "~> 0.3", only: [:dev, :test]},
{:connection, "~> 1.0"},
{:ranch, "~> 1.2"},
]
end
defp package do
[maintainers: ["Jon Parise", "Steve Cohen", "Preston Guillory"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @project_url},
files: ~w(README.md LICENSE mix.exs lib) ++
~w(src/thrift_lexer.xrl src/thrift_parser.yrl)
]
2015-01-07 01:44:59 +00:00
end
end