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.10", 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", "CHANGELOG.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, git: "https://akkoma.dev/AkkomaGang/rdf-ex.git", ref: "6fe1c613884c41da213966ea3fb2531f59417e8d" }, {:jason, "~> 1.2"}, {:httpoison, "~> 1.6"}, {:dialyxir, "~> 1.1", only: :dev, runtime: false}, {:ex_doc, "~> 0.28", only: :dev, runtime: false}, {:bypass, "~> 2.1", only: :test}, {:excoveralls, "~> 0.14", 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