ash_postgres/mix.exs

112 lines
3 KiB
Elixir
Raw Normal View History

2019-12-05 03:58:20 +13:00
defmodule AshPostgres.MixProject do
2019-10-07 09:36:18 +13:00
use Mix.Project
2019-12-05 04:13:24 +13:00
@description """
A postgres data layer for `Ash` resources. Leverages Ecto's postgres
support, and delegates to a configured repo.
"""
2021-01-13 14:53:41 +13:00
@version "0.30.1"
2020-06-01 17:36:43 +12:00
2019-10-07 09:36:18 +13:00
def project do
[
2019-12-05 03:58:20 +13:00
app: :ash_postgres,
2020-06-01 17:36:43 +12:00
version: @version,
2019-10-07 09:36:18 +13:00
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
2019-12-05 04:13:24 +13:00
deps: deps(),
description: @description,
2020-06-03 14:47:41 +12:00
test_coverage: [tool: ExCoveralls],
2020-09-03 20:18:11 +12:00
elixirc_paths: elixirc_paths(Mix.env()),
2020-06-03 14:47:41 +12:00
preferred_cli_env: [
coveralls: :test,
"coveralls.github": :test
],
2020-06-03 15:29:11 +12:00
dialyzer: [
plt_add_apps: [:ecto, :ash, :mix]
2020-06-03 15:29:11 +12:00
],
docs: docs(),
2020-06-03 14:47:41 +12:00
aliases: aliases(),
2019-12-05 04:13:24 +13:00
package: package(),
source_url: "https://github.com/ash-project/ash_postgres",
homepage_url: "https://github.com/ash-project/ash_postgres"
]
end
2020-09-03 20:18:11 +12:00
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
2019-12-05 04:13:24 +13:00
defp package do
[
name: :ash_postgres,
licenses: ["MIT"],
links: %{
GitHub: "https://github.com/ash-project/ash_postgres"
}
2019-10-07 09:36:18 +13:00
]
end
defp docs do
[
2020-10-29 16:56:59 +13:00
main: "readme",
source_ref: "v#{@version}",
logo: "logos/small-logo.png",
2020-10-29 16:56:59 +13:00
extras: [
"README.md",
"documentation/multitenancy.md"
],
groups_for_extras: [
guides: [
"documentation/multitenancy.md"
]
],
groups_for_modules: [
"entry point": [AshPostgres],
2020-10-29 16:53:28 +13:00
"data layer and dsl": ~r/AshPostgres.DataLayer/,
2020-10-06 18:41:18 +13:00
functions: [AshPostgres.Functions.TrigramSimilarity],
repo: [AshPostgres.Repo],
migrations: [AshPostgres.MigrationGenerator],
2020-10-29 16:53:28 +13:00
utilities: [AsPostgres.MultiTenancy],
"filter predicates": ~r/AshPostgres.Predicates/,
"DSL Transformers": ~r/AshPostgres.Transformers/
]
]
end
2019-10-07 09:36:18 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
2020-10-29 15:26:45 +13:00
{:ecto_sql, "~> 3.5"},
{:jason, "~> 1.0"},
2019-10-07 09:36:18 +13:00
{:postgrex, ">= 0.0.0"},
# {:ash, ash_version("~> 1.28.1")},
{:ash, "~> 1.29.0-rc0"},
2020-07-25 09:53:55 +12:00
{:git_ops, "~> 2.0.1", only: :dev},
{:ex_doc, "~> 0.22", only: :dev, runtime: false},
2020-06-03 14:47:41 +12:00
{:ex_check, "~> 0.11.0", only: :dev},
{:credo, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
{:sobelow, ">= 0.0.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.13.0", only: [:dev, :test]}
]
end
defp ash_version(default_version) do
case System.get_env("ASH_VERSION") do
nil -> default_version
"local" -> [path: "../ash"]
"master" -> [git: "https://github.com/ash-project/ash.git"]
version -> "~> #{version}"
end
end
2020-06-03 14:47:41 +12:00
defp aliases do
[
sobelow:
"sobelow --skip -i Config.Secrets --ignore-files lib/migration_generator/migration_generator.ex",
2020-06-15 19:05:21 +12:00
credo: "credo --strict",
"ash.formatter": "ash.formatter --extensions AshPostgres.DataLayer"
2019-10-07 09:36:18 +13:00
]
end
end