ash_postgres/mix.exs

250 lines
7.4 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 """
2024-05-02 07:22:28 +12:00
The PostgreSQL data layer for Ash Framework
2019-12-05 04:13:24 +13:00
"""
2024-09-03 17:57:31 +12:00
@version "2.2.4"
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,
elixir: "~> 1.13",
2019-10-07 09:36:18 +13:00
start_permanent: Mix.env() == :prod,
2019-12-05 04:13:24 +13:00
deps: deps(),
description: @description,
2020-09-03 20:18:11 +12:00
elixirc_paths: elixirc_paths(Mix.env()),
consolidate_protocols: Mix.env() == :prod,
2020-06-03 14:47:41 +12:00
preferred_cli_env: [
coveralls: :test,
"coveralls.github": :test,
"test.create": :test,
"test.migrate": :test,
"test.rollback": :test,
"test.migrate_tenants": :test,
"test.check_migrations": :test,
"test.drop": :test,
"test.generate_migrations": :test,
"test.reset": :test
2020-06-03 14:47:41 +12:00
],
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://ash-hq.org",
consolidate_protocols: Mix.env() == :prod
2019-12-05 04:13:24 +13:00
]
end
2021-01-27 14:21:53 +13:00
if Mix.env() == :test do
def application() do
2023-10-18 05:25:38 +13:00
[
mod: {AshPostgres.TestApp, []}
]
2021-01-27 14:21:53 +13:00
end
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"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG* documentation),
2019-12-05 04:13:24 +13:00
links: %{
GitHub: "https://github.com/ash-project/ash_postgres"
}
2019-10-07 09:36:18 +13:00
]
end
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
logo: "logos/small-logo.png",
2023-10-03 01:34:45 +13:00
before_closing_head_tag: fn type ->
if type == :html do
"""
<script>
if (location.hostname === "hexdocs.pm") {
var script = document.createElement("script");
script.src = "https://plausible.io/js/script.js";
script.setAttribute("defer", "defer")
script.setAttribute("data-domain", "ashhexdocs")
document.head.appendChild(script);
}
</script>
2023-10-03 01:34:45 +13:00
"""
end
end,
2024-01-13 08:48:41 +13:00
extras: [
{"README.md", title: "Home"},
"documentation/tutorials/get-started-with-ash-postgres.md",
"documentation/topics/about-ash-postgres/what-is-ash-postgres.md",
"documentation/topics/resources/references.md",
"documentation/topics/resources/polymorphic-resources.md",
"documentation/topics/development/migrations-and-tasks.md",
"documentation/topics/development/testing.md",
"documentation/topics/development/upgrading-to-2.0.md",
"documentation/topics/advanced/expressions.md",
"documentation/topics/advanced/schema-based-multitenancy.md",
"documentation/topics/advanced/manual-relationships.md",
2024-03-28 10:30:30 +13:00
"documentation/dsls/DSL:-AshPostgres.DataLayer.md",
"CHANGELOG.md"
2024-01-13 08:48:41 +13:00
],
groups_for_extras: [
Tutorials: ~r"documentation/tutorials",
Resources: ~r"documentation/topics",
Development: ~r"documentation/topics/development",
"About AshPostgres": ["CHANGELOG.md"],
Advanced: ~r"documentation/topics/advanced",
Reference: ~r"documentation/topics/dsls",
DSLs: ~r"documentation/dsls"
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md",
"documentation/development/upgrading-to-2.0.md"
2024-01-13 08:48:41 +13:00
],
2024-01-13 08:27:14 +13:00
nest_modules_by_prefix: [
AshPostgres.Functions
],
groups_for_modules: [
2022-08-24 11:56:46 +12:00
AshPostgres: [
AshPostgres,
2022-08-24 11:56:46 +12:00
AshPostgres.Repo,
AshPostgres.DataLayer
],
2023-09-23 08:14:25 +12:00
Utilities: [
AshPostgres.ManualRelationship
],
2022-08-24 11:56:46 +12:00
Introspection: [
2023-09-23 08:14:25 +12:00
AshPostgres.DataLayer.Info,
AshPostgres.CheckConstraint,
AshPostgres.CustomExtension,
AshPostgres.CustomIndex,
AshPostgres.Reference,
AshPostgres.Statement
2022-08-24 11:56:46 +12:00
],
2023-09-23 08:14:25 +12:00
Types: [
AshPostgres.Type,
AshPostgres.Tsquery,
2024-05-05 22:08:21 +12:00
AshPostgres.Tsvector,
AshPostgres.Timestamptz,
AshPostgres.TimestamptzUsec
2023-09-23 08:14:25 +12:00
],
Extensions: [
2023-09-23 09:16:47 +12:00
AshPostgres.Extensions.Vector
2022-08-24 11:56:46 +12:00
],
"Custom Aggregates": [
AshPostgres.CustomAggregate
],
2022-08-24 11:56:46 +12:00
"Postgres Migrations": [
AshPostgres.Migration,
EctoMigrationDefault
],
2023-09-23 08:14:25 +12:00
Expressions: [
AshPostgres.Functions.TrigramSimilarity,
AshPostgres.Functions.ILike,
AshPostgres.Functions.Like,
AshPostgres.Functions.VectorCosineDistance
2024-01-13 08:27:14 +13:00
]
]
]
end
2019-10-07 09:36:18 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ash, ash_version("~> 3.3")},
{:ash_sql, ash_sql_version("~> 0.2 and >= 0.2.30")},
{:igniter, "~> 0.3 and >= 0.3.6"},
2024-08-15 23:25:29 +12:00
{:ecto_sql, "~> 3.12"},
{:ecto, "~> 3.12 and >= 3.12.1"},
{:jason, "~> 1.0"},
2019-10-07 09:36:18 +13:00
{:postgrex, ">= 0.0.0"},
# dev/test dependencies
{:eflame, "~> 1.0", only: [:dev, :test]},
2024-03-30 01:55:16 +13:00
{:simple_sat, "~> 0.1", only: [:dev, :test]},
2023-10-18 05:25:38 +13:00
{:benchee, "~> 1.1", only: [:dev, :test]},
2023-02-01 16:35:12 +13:00
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:ex_doc, github: "elixir-lang/ex_doc", only: [:dev, :test], runtime: false},
2023-02-01 16:35:12 +13:00
{:ex_check, "~> 0.14", only: [:dev, :test]},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
2024-04-22 01:56:19 +12:00
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false},
2023-02-01 16:35:12 +13:00
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
2024-04-12 03:39:49 +12:00
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false}
2020-06-03 14:47:41 +12:00
]
end
2023-08-01 15:37:53 +12:00
defp ash_version(default_version) do
case System.get_env("ASH_VERSION") do
nil ->
default_version
2023-02-11 09:41:41 +13:00
2023-08-01 15:37:53 +12:00
"local" ->
[path: "../ash", override: true]
2023-02-11 09:41:41 +13:00
2023-08-01 15:37:53 +12:00
"main" ->
[git: "https://github.com/ash-project/ash.git"]
2023-02-11 09:41:41 +13:00
2023-08-01 15:37:53 +12:00
version when is_binary(version) ->
"~> #{version}"
2023-02-11 09:41:41 +13:00
2023-08-01 15:37:53 +12:00
version ->
version
end
end
2024-04-23 03:31:13 +12:00
defp ash_sql_version(default_version) do
case System.get_env("ASH_SQL_VERSION") do
nil ->
default_version
"local" ->
[path: "../ash_sql", override: true]
"main" ->
[git: "https://github.com/ash-project/ash_sql.git"]
version when is_binary(version) ->
"~> #{version}"
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",
2023-09-23 08:14:25 +12:00
docs: [
2024-01-09 02:55:05 +13:00
"spark.cheat_sheets",
2023-09-23 08:14:25 +12:00
"docs",
"spark.replace_doc_links",
2023-09-23 08:14:25 +12:00
"spark.cheat_sheets_in_search"
],
2022-09-09 05:28:58 +12:00
"spark.formatter": "spark.formatter --extensions AshPostgres.DataLayer",
2023-09-23 08:14:25 +12:00
"spark.cheat_sheets": "spark.cheat_sheets --extensions AshPostgres.DataLayer",
2023-09-23 09:16:47 +12:00
"spark.cheat_sheets_in_search":
"spark.cheat_sheets_in_search --extensions AshPostgres.DataLayer",
"test.generate_migrations": "ash_postgres.generate_migrations",
"test.check_migrations": "ash_postgres.generate_migrations --check",
"test.migrate_tenants": "ash_postgres.migrate --tenants",
"test.migrate": "ash_postgres.migrate",
"test.rollback": "ash_postgres.rollback",
"test.create": "ash_postgres.create",
"test.reset": ["test.drop", "test.create", "test.migrate", "ash_postgres.migrate --tenants"],
"test.drop": "ash_postgres.drop"
2019-10-07 09:36:18 +13:00
]
end
end