-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
68 lines (58 loc) · 1.46 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
defmodule EctoUnixTimestamp.MixProject do
use Mix.Project
@version "1.0.0"
@description "Nimble Ecto type for datetime fields to cast from Unix timestamps."
@repo_url "https://github.com/whatyouhide/ecto_unix_timestamp"
def project do
[
app: :ecto_unix_timestamp,
version: @version,
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
preferred_cli_env: [
"coveralls.html": :test
],
# Tests
test_coverage: [tool: ExCoveralls],
# Dialyzer
dialyzer: [
plt_local_path: "plts",
plt_core_path: "plts"
],
# Hex
package: package(),
description: @description,
# Docs
name: "EctoUnixTimestamp",
docs: [
main: "EctoUnixTimestamp",
source_ref: "v#{@version}",
source_url: @repo_url
]
]
end
def application do
[
extra_applications: []
]
end
defp package do
[
maintainers: ["Andrea Leopardi"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url, "Sponsor" => "https://github.com/sponsors/whatyouhide"}
]
end
defp deps do
[
{:ecto, "~> 3.0"},
# Dev/test dependencies
{:castore, "~> 1.0", only: :test},
{:dialyxir, "~> 1.4 and >= 1.4.2", only: [:dev, :test], runtime: false},
{:ecto_sqlite3, "~> 0.13", only: :test},
{:ex_doc, "~> 0.31", only: :dev},
{:excoveralls, "~> 0.17", only: :test}
]
end
end