Current section
Files
Jump to
Current section
Files
openapi_toolbox
mix.exs
mix.exs
defmodule OpenapiToolbox.MixProject do
use Mix.Project
def project do
[
app: :openapi_toolbox,
version: "0.0.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: description(),
source_url: "https://github.com/biggless/openapi_toolbox",
homepage_url: "https://github.com/biggless/openapi_toolbox"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {OpenapiToolbox.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:yaml_elixir, "~> 2.8"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
defp package do
[
name: "openapi_toolbox",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/biggless/openapi_toolbox"}
]
end
defp description() do
"""
Under construction
"""
end
end