defmodule Fishjam.Mixfile do use Mix.Project @version "0.6.0" @github_url "https://github.com/fishjam-dev/elixir_server_sdk" @homepage_url "https://fishjam-dev.github.io/fishjam-docs/" def project do [ app: :fishjam_server_sdk, version: @version, elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), aliases: aliases(), dialyzer: dialyzer(), # hex description: "Fishjam Server SDK", package: package(), # docs name: "Fishjam Server SDK", source_url: @github_url, homepage_url: @homepage_url, docs: docs(), # test coverage test_coverage: [tool: ExCoveralls], preferred_cli_env: [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test, "coveralls.json": :test, "test.docker": :test ] ] end def application do [ extra_applications: [] ] end defp elixirc_paths(env) when env in [:test, :test_local], do: ["lib", "test/support"] defp elixirc_paths(_env), do: ["lib"] defp deps do [ {:tesla, "~> 1.5"}, {:mint, "~> 1.0"}, {:jason, "~> 1.4"}, {:websockex, "~> 0.4.3"}, {:elixir_uuid, "~> 1.2"}, {:castore, "~> 1.0"}, # protobuf deps {:protobuf, "~> 0.12.0"}, # Docs, credo, test coverage, dialyzer {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:dialyxir, ">= 0.0.0", only: :dev, runtime: false}, {:credo, ">= 0.0.0", only: :dev, runtime: false}, {:excoveralls, ">= 0.0.0", only: [:test, :test_local], runtime: false}, # Test deps {:plug_cowboy, "~> 2.5", only: [:test, :test_local]}, {:phoenix_pubsub, "~> 2.1", only: [:test, :test_local]} ] end defp dialyzer() do opts = [ flags: [:error_handling], plt_add_apps: [:mix] ] if System.get_env("CI") == "true" do # Store PLTs in cacheable directory for CI [plt_local_path: "priv/plts", plt_core_path: "priv/plts"] ++ opts else opts end end defp package do [ maintainers: ["Fishjam Team"], licenses: ["Apache-2.0"], links: %{ "GitHub" => @github_url, "Fishjam" => @homepage_url } ] end defp docs do [ main: "readme", extras: ["README.md", "LICENSE"], formatters: ["html"], source_ref: "v#{@version}", nest_modules_by_prefix: [ Fishjam, Fishjam.Exception, Fishjam.Notification ], groups_for_modules: [ Events: ~r/^Fishjam\.((\bNotification\.[a-zA-Z]*$)|(\bMetricsReport))/ ] ] end def aliases do [ "test.local": ["cmd MIX_ENV=test_local mix test"], "test.docker": "test_with_docker" ] end end