mash/mix.exs

41 lines
1,006 B
Elixir
Raw Normal View History

2023-08-10 08:30:20 +00:00
defmodule Mash.MixProject do
use Mix.Project
def project do
[
app: :mash,
2024-10-29 18:01:54 +00:00
version: "0.3.1",
2023-08-10 08:30:20 +00:00
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
2023-08-10 09:14:45 +00:00
deps: deps(),
docs: [
main: "Mash"
],
2024-10-29 18:01:54 +00:00
source_url: "https://code.mythicinsight.com/mythic-insight/mash",
2023-08-10 09:14:45 +00:00
package: [
description: "A dead simple tool for defining and running CI pipelines in Elixir.",
licenses: ["MIT"],
2024-10-29 18:01:54 +00:00
links: %{"Gitlab" => "https://code.mythicinsight.com/mythic-insight/mash"}
2023-08-10 09:14:45 +00:00
]
2023-08-10 08:30:20 +00:00
]
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
[
2023-08-10 09:14:45 +00:00
{:ex_doc, "~> 0.30.4", only: :dev},
2023-08-17 20:13:47 +00:00
{:credo, "~> 1.7"},
{:styler, "~> 0.8.4"}
2023-08-10 08:30:20 +00:00
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end