defmodule UeberauthAuth0.Mixfile do use Mix.Project @source_url "https://github.com/achedeuzot/ueberauth_auth0" @version "2.1.0" def project do [ app: :ueberauth_auth0, version: @version, name: "Ueberauth Auth0", package: package(), elixir: "~> 1.7", deps: deps(), docs: docs(), build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, # Test coverage: test_coverage: [tool: ExCoveralls], preferred_cli_env: [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test, vcr: :test, "vcr.delete": :test, "vcr.check": :test, "vcr.show": :test ], # Type checking dialyzer: [ plt_core_path: "_build/#{Mix.env()}" ] ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:ueberauth, "~> 0.7"}, {:oauth2, "~> 2.0"}, # Docs: {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, # Testing: {:exvcr, "~> 0.10", only: :test}, {:excoveralls, "~> 0.11", only: :test}, # Type checking {:dialyxir, "~> 1.2.0", only: [:dev, :test], runtime: false}, # Lint: {:credo, "~> 1.1", only: [:dev, :test]} ] end defp docs do [ extras: [ "CHANGELOG.md", "LICENSE.md": [title: "License"], "README.md": [title: "Overview"] ], source_url: @source_url, source_ref: "v#{@version}", main: "readme", formatters: ["html"] ] end defp package do [ name: :ueberauth_auth0, description: "An Ueberauth strategy for using Auth0 to authenticate your users.", files: ["lib", "mix.exs", "README.md", "LICENSE.md"], maintainers: ["Son Tran-Nguyen", "Nikita Sobolev", "Klemen Sever"], licenses: ["MIT"], links: %{ Changelog: "https://hexdocs.pm/ueberauth_auth0/changelog.html", GitHub: @source_url } ] end end