Current section

Files

Jump to
Raw

mix.exs

defmodule Getcpfs.MixProject do
use Mix.Project
def project do
[
app: :getcpfs,
version: "0.0.2",
elixir: "~> 1.10",
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description() do
"Gerador de CPFs"
end
defp package() do
[
name: "gettestcpfs",
# These are the default files included in the package
files: ~w(lib
mix.exs
README.md),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://gitlab.com/wagncarv/GetCPFs"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:elastix, ">= 0.0.0"},
{:jason, "~> 1.0"},
{:httpoison, "~> 1.7"},
{:ex_doc, "~> 0.18", only: :dev, runtime: true},
{:opentelemetry_api, "~> 0.3.2"},
{:opentelemetry_zipkin, "~> 0.2.0"},
{:quantum, "~> 3.3"},
{:opentelemetry, "~> 0.4.0"},
# {:alertrack_helpers, git: "https://gitlab.com/NeoArcanjo/sylonhelpers.git"},
{:elixir_uuid, "~> 1.2"},
{:timex, "~> 3.5"}
]
end
end