defmodule Assent.MixProject do use Mix.Project @source_url "https://github.com/pow-auth/assent" @version "0.1.21" def project do [ app: :assent, version: @version, elixir: "~> 1.7", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), # Hex description: "Multi-provider framework", package: package(), # Docs name: "Assent", docs: docs(), xref: [exclude: [:certifi, :httpc, Mint.HTTP, JOSE.JWT, JOSE.JWK, JOSE.JWS, :ssl_verify_hostname]] ] end def application do [ extra_applications: [:logger, :crypto, :public_key] ] end defp deps do [ {:jose, "~> 1.8", optional: true}, {:certifi, ">= 0.0.0", optional: true}, {:ssl_verify_fun, ">= 0.0.0", optional: true}, {:mint, "~> 1.0", optional: true}, {:castore, "~> 0.1.0", optional: true}, {:credo, "~> 1.1", only: [:dev, :test]}, {:jason, "~> 1.0", only: [:dev, :test]}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:cowboy, "~> 2.8", only: :test, override: true}, {:cowlib, "~> 2.9", only: :test, override: true}, {:ranch, "~> 1.7", only: :test, override: true}, {:bypass, "~> 2.1", only: :test} ] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp package do [ maintainers: ["Dan Shultzer"], licenses: ["MIT"], links: %{gitHub: @source_url}, files: ~w(lib LICENSE mix.exs README.md) ] end defp docs do [ source_ref: "v#{@version}", main: "README", canonical: "http://hexdocs.pm/assent", source_url: @source_url, extras: [ "README.md": [filename: "README"], "CHANGELOG.md": [filename: "CHANGELOG"], ], groups_for_modules: [ Strategies: ~r/^Assent.Strategy/ ], skip_undefined_reference_warnings_on: [ "CHANGELOG.md" ] ] end end