ash_postgres/mix.exs

83 lines
2 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.
"""
2020-06-15 19:05:55 +12:00
@version "0.2.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],
preferred_cli_env: [
coveralls: :test,
"coveralls.github": :test
],
2020-06-03 15:29:11 +12:00
dialyzer: [
plt_add_apps: [:ecto]
],
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
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
[
main: "AshPostgres",
source_ref: "v#{@version}",
logo: "logos/small-logo.png",
groups_for_modules: [
"entry point": [AshPostgres],
"data layer": [AshPostgres.DataLayer],
repo: [AshPostgres.Repo],
"filter predicates": ~r/AshPostgres.Predicates/
]
]
end
2019-10-07 09:36:18 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto_sql, "~> 3.4"},
2019-10-07 09:36:18 +13:00
{:postgrex, ">= 0.0.0"},
2020-06-15 19:05:21 +12:00
{:ash, "~> 0.5.1"},
2020-06-01 17:36:43 +12:00
{:git_ops, "~> 2.0.0", 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 aliases do
[
sobelow: "sobelow --skip",
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