You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
defmodule SUScoreClock.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :su_score_clock,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.10",
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
mod: {SUScoreClock.Application, []},
|
|
extra_applications: [:logger, :runtime_tools, :os_mon]
|
|
]
|
|
end
|
|
|
|
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
|
defp elixirc_paths(_), do: ["lib"]
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:phoenix, "~> 1.5.3"},
|
|
{:phoenix_pubsub, "~> 2.0"},
|
|
{:plug_cowboy, "~> 2.3"},
|
|
{:phoenix_html, "~> 2.11"},
|
|
{:phoenix_live_reload, "~> 1.2", only: :dev},
|
|
{:phoenix_live_dashboard, "0.2.7"},
|
|
{:telemetry_poller, "~> 0.4"},
|
|
{:telemetry_metrics, "~> 0.4"},
|
|
{:gettext, "~> 0.11"},
|
|
{:jason, "~> 1.0"},
|
|
{:distillery, "~> 2.1", only: [:prod]},
|
|
{:su_project, "~> 0.51", git: "ssh://git@git.lindenberg.ca:767/su/su_project.git"},
|
|
{:su_server, "~> 0.32", git: "ssh://git@git.lindenberg.ca:767/su/su_server.git"},
|
|
{:su_client, "~> 0.149", git: "ssh://git@git.lindenberg.ca:767/su/su_client.git"},
|
|
{:su_auth, "~> 0.21", git: "ssh://git@git.lindenberg.ca:767/su/su_auth.git"},
|
|
{:su_user, "~> 0.59", git: "ssh://git@git.lindenberg.ca:767/su/su_user.git"}
|
|
]
|
|
end
|
|
end
|
|
|