elixir-thrift/mix.exs

89 lines
2.1 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
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:leex, :yecc, :erlang, :elixir, :app],
# Testing
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
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"
],
# Docs
name: "Thrift",
docs: [
main: "README",
extras: ["README.md": [title: "README"]],
source_url: @project_url
]
]
2015-01-07 01:44:59 +00:00
end
def application do
[
applications: [:logger, :connection, :ranch, :ssl]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support/lib"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev},
2018-06-13 19:10:27 +00:00
{:excoveralls, "~> 0.9", only: [:dev, :test]},
{:credo, "~> 0.10", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: :dev, runtime: false},
{:connection, "~> 1.0"},
{:ranch, "~> 1.5"}
]
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