defmodule Kubegen.MixProject do use Mix.Project @app :kubegen @source_url "https://github.com/mruoss/#{@app}" @version "0.1.1" def project do [ app: @app, description: "Generate resource based Kubernetes clients", version: @version, elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), docs: docs(), preferred_cli_env: cli_env(), package: package(), test_coverage: [tool: ExCoveralls], dialyzer: dialyzer() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:kubereq, "~> 0.1.0", optional: true}, {:owl, "~> 0.9.0"}, {:req, "~> 0.4.0"}, {:yaml_elixir, "~> 2.0"}, # Test deps {:excoveralls, "~> 0.18", only: :test}, {:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false}, # Dev deps {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.31", only: :dev, runtime: false}, {:dialyxir, "~> 1.4.0", only: [:dev, :test], runtime: false} ] end defp docs do [ main: "readme", source_ref: @version, source_url: @source_url, extras: [ "README.md", "CHANGELOG.md" ] ] end defp cli_env do [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test, "coveralls.travis": :test, "coveralls.github": :test, "coveralls.xml": :test, "coveralls.json": :test ] end defp package do [ name: @app, maintainers: ["Michael Ruoss"], licenses: ["MIT"], links: %{ "GitHub" => @source_url, "Changelog" => "https://hexdocs.pm/#{@app}/changelog.html", "Sponsor" => "https://github.com/sponsors/mruoss" }, files: [ "lib", "build", "mix.exs", "README.md", "LICENSE.md", "CHANGELOG.md", ".formatter.exs" ] ] end defp dialyzer do [ ignore_warnings: ".dialyzer_ignore.exs", plt_core_path: "priv/plts", plt_file: {:no_warn, "priv/plts/#{@app}.plt"}, plt_add_apps: [:mix] ] end end