86 lines
1.9 KiB
Elixir
86 lines
1.9 KiB
Elixir
defmodule JSON.LD.Mixfile do
|
|
use Mix.Project
|
|
|
|
@repo_url "https://github.com/rdf-elixir/jsonld-ex"
|
|
|
|
@version File.read!("VERSION") |> String.trim()
|
|
|
|
def project do
|
|
[
|
|
app: :json_ld,
|
|
version: @version,
|
|
elixir: "~> 1.8",
|
|
build_embedded: Mix.env() == :prod,
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps(),
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
|
|
# Hex
|
|
package: package(),
|
|
description: description(),
|
|
|
|
# Docs
|
|
name: "JSON-LD.ex",
|
|
docs: [
|
|
main: "JSON.LD",
|
|
source_url: @repo_url,
|
|
source_ref: "v#{@version}",
|
|
extras: ["README.md"]
|
|
],
|
|
|
|
# Dialyzer
|
|
dialyzer: dialyzer(),
|
|
|
|
# ExCoveralls
|
|
test_coverage: [tool: ExCoveralls],
|
|
preferred_cli_env: [
|
|
coveralls: :test,
|
|
"coveralls.detail": :test,
|
|
"coveralls.post": :test,
|
|
"coveralls.html": :test
|
|
]
|
|
]
|
|
end
|
|
|
|
defp description do
|
|
"""
|
|
An implementation of JSON-LD for Elixir and RDF.ex.
|
|
"""
|
|
end
|
|
|
|
defp package do
|
|
[
|
|
maintainers: ["Marcel Otto"],
|
|
licenses: ["MIT"],
|
|
links: %{"GitHub" => @repo_url},
|
|
files: ~w[lib mix.exs README.md LICENSE.md VERSION]
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[extra_applications: [:logger]]
|
|
end
|
|
|
|
defp deps do
|
|
[
|
|
{:rdf, "~> 0.9"},
|
|
{:jason, "~> 1.2"},
|
|
{:httpoison, "~> 1.7"},
|
|
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
|
|
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
|
|
{:bypass, "~> 1.0", only: :test},
|
|
# in order to run under OTP 21 we need to keep this dependency of bypass on 1.0
|
|
{:plug_cowboy, "~> 1.0", only: :test},
|
|
{:excoveralls, "~> 0.13", only: :test}
|
|
]
|
|
end
|
|
|
|
defp dialyzer do
|
|
[
|
|
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
|
|
]
|
|
end
|
|
|
|
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
|
defp elixirc_paths(_), do: ["lib"]
|
|
end
|