defmodule ForkPoison.Mixfile do
use Mix.Project
version_path = Path.join([__DIR__, "VERSION"])
@external_resource version_path
@version version_path |> File.read!() |> String.trim()
def project do
[
app: :fork_poison,
name: "ForkPoison",
version: @version,
elixir: "~> 1.12",
description: "An incredibly fast, pure Elixir JSON library, Forked from Poison Library",
source_url: "https://github.com/jaeyson/fork_poison",
start_permanent: Mix.env() == :prod,
consolidate_protocols: Mix.env() not in [:dev, :test],
elixirc_paths: elixirc_paths(),
deps: deps(),
docs: docs(),
package: package(),
aliases: aliases(),
xref: [exclude: [Decimal]],
dialyzer: [
plt_add_apps: [:decimal],
flags: [
:error_handling,
:extra_return,
:missing_return,
:unmatched_returns,
:underspecs
]
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.post": :test,
"coveralls.github": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
# Specify extra applications you'll use from Erlang/Elixir
if Mix.env() == :bench do
[extra_applications: [:eex]]
else
[]
end
end
defp elixirc_paths do
if Mix.env() == :profile do
~w(lib profile)
else
["lib"]
end
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:benchee_html, "~> 1.0", only: :bench, runtime: false},
{:benchee_markdown, "~> 0.3", only: :bench, runtime: false},
{:benchee, "~> 1.3", only: :bench, runtime: false},
{:castore, "~> 1.0", only: :test, runtime: false},
{:credo, "~> 1.7.7-rc", only: [:dev, :test], runtime: false},
{:decimal, "~> 3.1", optional: true},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.34", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.18", only: :test, runtime: false},
{:exjsx, "~> 4.0", only: [:bench, :profile], runtime: false},
{:jason, "~> 1.4.5", only: [:dev, :test, :bench, :profile], runtime: false},
{:jiffy, "~> 2.0", only: [:bench, :profile], runtime: false},
{:jsone, "~> 1.8", only: [:bench, :profile], runtime: false},
{:junit_formatter, "~> 3.4", only: :test, runtime: false},
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
{:stream_data, "~> 1.1", only: [:dev, :test], runtime: false},
{:thoas, "~> 1.2", only: [:bench, :profile], runtime: false},
{:tiny, "~> 1.0", only: [:bench, :profile], runtime: false}
]
end
defp docs do
[
main: "ForkPoison",
canonical: "https://hexdocs.pm/fork_poison",
extras: [
"README.md",
"CHANGELOG.md": [title: "Changelog"],
LICENSE: [title: "License"]
],
source_ref: "master"
]
end
defp package do
[
files: ~w(lib mix.exs README.md LICENSE VERSION),
maintainers: ["Jaeyson Anthony Y. <hello@jaeyson.dev>"],
licenses: ["0BSD"],
links: %{"GitHub" => "https://github.com/jaeyson/fork_poison"}
]
end
defp aliases do
[
"deps.get": [
fn _args ->
System.cmd("git", ["submodule", "update", "--init"],
cd: __DIR__,
env: [],
parallelism: true
)
end,
"deps.get"
]
]
end
end