forked from pinterest/elixir-thrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
89 lines (74 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
defmodule Thrift.Mixfile do
@moduledoc false
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"
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(),
# 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_ref: "thrift_tng",
source_url: @project_url]]
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.17", only: :dev},
{:excoveralls, "~> 0.7", only: [:dev, :test]},
{:credo, "~> 0.8", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: :dev, runtime: false},
{:benchfella, "~> 0.3", only: [:dev, :test]},
{:connection, "~> 1.0"},
{:ranch, "~> 1.4"},
]
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)
]
end
end