Current section

Files

Jump to
ex_kits mix.exs
Raw

mix.exs

defmodule ExKits.MixProject do
@moduledoc false
use Mix.Project
@name "ex_kits"
@version "0.2.9"
@repo_url "https://github.com/tt67wq/ex_kits"
@description "Some useful kits for elixir development"
def project do
[
app: :ex_kits,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: @repo_url,
name: @name,
package: package(),
description: @description
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto, :public_key]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:tzdata, "~> 1.1"},
{:jason, "~> 1.4"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:styler, "~> 0.11", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
defp package do
[
licenses: ["MIT"],
links: %{
"GitHub" => @repo_url
}
]
end
end