defmodule VtexWs.MixProject do use Mix.Project def project do [ app: :vtex_ws, version: "0.1.0", elixir: "~> 1.5", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps(), description: description(), package: package(), name: "VtexWs", source_url: "https://github.com/TodoCartoes/wtex_ws.git" ] end # Configuration for the OTP application. # # Type `mix help compile.app` for more information. def application do [ mod: {VtexWs.Application, []}, extra_applications: [:logger, :runtime_tools] ] end # Specifies which paths to compile per environment. defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] # Specifies your project dependencies. # # Type `mix help deps` for examples and options. defp deps do [ {:phoenix, "~> 1.4.11"}, {:phoenix_pubsub, "~> 1.1"}, {:phoenix_ecto, "~> 4.0"}, {:ecto_sql, "~> 3.1"}, {:postgrex, ">= 0.0.0"}, {:phoenix_html, "~> 2.11"}, {:phoenix_live_reload, "~> 1.2", only: :dev}, {:gettext, "~> 0.11"}, {:jason, "~> 1.0"}, #{:cowboy, "~> 2.5", override: true}, #{:plug_cowboy, "~> 2.0", override: true}, {:redix, ">= 0.0.0"}, {:castore, ">= 0.0.0"}, {:gen_retry, ">= 1.2.0"}, {:httpoison, "~> 1.6"}, {:poison, "~> 3.1"}, {:bugsnag, "~> 2.0.0"}, {:ex_aws, "~> 2.0"}, {:ex_aws_sqs, "~> 3.2"}, {:hackney, "~> 1.9"}, {:saxy, "~> 1.1"}, {:envy, "~> 1.1.1"}, {:exq, "~> 0.13.5"}, #{:exq_ui, "~> 0.9.0", override: true}, {:ex_doc, "~> 0.13", only: :dev}, ] end # Aliases are shortcuts or tasks specific to the current project. # For example, to create, migrate and run the seeds file at once: # # $ mix ecto.setup # # See the documentation for `Mix` for more info on aliases. defp aliases do [ "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"], "ecto.reset": ["ecto.drop", "ecto.setup"], test: ["ecto.create --quiet", "ecto.migrate", "test"] ] end defp description() do "A few sentences (a paragraph) describing the project." end defp package() do [ # This option is only needed when you don't want to use the OTP application name name: "vtexws", # These are the default files included in the package files: ~w(lib priv .formatter.exs mix.exs README*), licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/TodoCartoes/wtex_ws"} ] end end