rdf-ex/mix.exs

73 lines
1.7 KiB
Elixir
Raw Normal View History

2017-06-11 15:23:58 +00:00
defmodule RDF.Mixfile do
2016-09-30 14:36:50 +00:00
use Mix.Project
@repo_url "https://github.com/marcelotto/rdf-ex"
2017-08-10 21:14:34 +00:00
@version File.read!("VERSION") |> String.trim
2016-09-30 14:51:59 +00:00
2016-09-30 14:36:50 +00:00
def project do
2016-09-30 14:51:59 +00:00
[
2017-06-11 15:23:58 +00:00
app: :rdf,
2016-09-30 14:51:59 +00:00
version: @version,
2017-06-25 19:15:55 +00:00
elixir: "~> 1.4",
2016-09-30 14:51:59 +00:00
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
# Hex
package: package(),
description: description(),
# Docs
name: "RDF.ex",
docs: [
main: "RDF",
source_url: @repo_url,
source_ref: "v#{@version}",
extras: ["README.md"],
2017-08-11 12:11:37 +00:00
],
# ExCoveralls
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"coveralls": :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
2016-09-30 14:51:59 +00:00
]
end
2017-06-11 12:29:17 +00:00
defp description do
"""
An implementation of RDF for Elixir.
"""
end
2016-09-30 14:51:59 +00:00
defp package do
[
maintainers: ["Marcel Otto"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url},
2018-01-19 21:12:47 +00:00
files: ~w[lib src priv mix.exs README.md CHANGELOG.md LICENSE.md VERSION]
2016-09-30 14:51:59 +00:00
]
2016-09-30 14:36:50 +00:00
end
def application do
2017-06-25 19:15:55 +00:00
[extra_applications: [:logger]]
2016-09-30 14:36:50 +00:00
end
defp deps do
2016-09-30 14:54:47 +00:00
[
2017-09-08 16:14:15 +00:00
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:mix_test_watch, "~> 0.5", only: :dev, runtime: false},
2017-08-11 12:11:37 +00:00
{:excoveralls, "~> 0.7", only: :test},
{:inch_ex, "~> 0.5", only: [:dev, :test]},
{:benchee, "~> 0.9", only: :bench},
{:erlang_term, "~> 1.7", only: :bench},
2016-09-30 14:54:47 +00:00
]
2016-09-30 14:36:50 +00:00
end
end