ash_oban/mix.exs

151 lines
3.9 KiB
Elixir
Raw Normal View History

2023-04-22 16:46:04 +12:00
defmodule AshOban.MixProject do
use Mix.Project
2024-02-17 10:11:56 +13:00
@version "0.1.14"
2023-04-22 16:46:04 +12:00
@description """
An Ash.Resource extension for integrating with Oban.
"""
def project do
[
app: :ash_oban,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
package: package(),
aliases: aliases(),
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [plt_add_apps: [:ash]],
docs: docs(),
description: @description,
source_url: "https://github.com/ash-project/ash_oban",
homepage_url: "https://github.com/ash-project/ash_oban"
]
end
def cli do
[
preferred_envs: [
"test.gen.migration": :test,
"test.migrate": :test,
"test.create": :test
]
]
end
2023-04-22 16:46:04 +12:00
defp package do
[
name: :ash_oban,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG* documentation),
links: %{
GitHub: "https://github.com/ash-project/ash_oban"
}
]
end
defp elixirc_paths(:test) do
elixirc_paths(:dev) ++ ["test/support"]
end
defp elixirc_paths(_) do
["lib"]
end
defp docs do
[
main: "get-started-with-ash-oban",
2023-04-22 16:46:04 +12:00
source_ref: "v#{@version}",
logo: "logos/small-logo.png",
extra_section: "GUIDES",
2024-01-13 10:43:36 +13:00
extras: [
"documentation/tutorials/get-started-with-ash-oban.md",
"documentation/dsls/DSL:-AshOban.md"
],
groups_for_extras: [
Tutorials: ~r'documentation/tutorials',
"How To": ~r'documentation/how_to',
Topics: ~r'documentation/topics',
DSLs: ~r'documentation/dsls'
2023-04-22 16:46:04 +12:00
],
groups_for_modules: [
AshOban: [
AshOban
],
Utilities: [
AshOban.Changes.BuiltinChanges,
AshOban.Changes.RunObanTrigger
],
Authorization: [
AshOban.Checks.AshObanInteraction
],
Introspection: [
AshOban.Info,
2024-01-13 10:44:06 +13:00
AshOban.Trigger,
AshOban.Schedule
],
Testing: [
AshOban.Test
2024-01-13 10:44:06 +13:00
]
2023-04-22 16:46:04 +12: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-05-02 10:13:09 +12:00
oban_dep =
2023-05-02 10:22:48 +12:00
if System.get_env("ASH_OBAN_CI_OBAN_PRO") == "false" do
2023-05-02 10:13:09 +12:00
[]
2023-05-02 10:22:48 +12:00
else
# We can't currently use this as we don't have a license for oban_pro that we can use
# [{:oban_pro, "~> 1.0", repo: "oban", only: [:dev,]}]
[]
2023-05-02 10:13:09 +12:00
end
oban_dep ++
[
{:ash, "~> 2.9 and >= 2.9.27"},
2023-05-02 10:13:09 +12:00
{:spark, ">= 1.1.3"},
{:oban, "~> 2.15"},
{:ex_doc, "~> 0.22", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.12", only: [:dev, :test]},
2023-05-02 10:13:09 +12:00
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:excoveralls, "~> 0.13", only: [:dev, :test]},
{:postgrex, "~> 0.17.4"}
2023-05-02 10:13:09 +12:00
]
2023-04-22 16:46:04 +12:00
end
defp aliases do
[
sobelow: "sobelow --skip",
credo: "credo --strict",
docs: [
"spark.cheat_sheets",
"docs",
2023-10-06 02:04:33 +13:00
"spark.replace_doc_links",
"spark.cheat_sheets_in_search"
],
"spark.formatter": "spark.formatter --extensions AshOban",
"spark.cheat_sheets": "spark.cheat_sheets --extensions AshOban",
"spark.cheat_sheets_in_search": "spark.cheat_sheets_in_search --extensions AshOban",
"test.gen.migration": "ecto.gen.migration --migrations-path=test_migrations",
"test.migrate": "ecto.migrate --migrations-path=test_migrations",
"test.create": "ecto.create",
"test.setup": ["test.create", "test/migrate"]
2023-04-22 16:46:04 +12:00
]
end
end