-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmix.exs
137 lines (125 loc) Β· 3.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
defmodule Core.MixProject do
use Mix.Project
defp version do
version = git_vsn()
case Version.parse(version) do
{:ok, %Version{pre: ["pre" <> _ | _]} = version} ->
to_string(version)
{:ok, %Version{pre: []} = version} ->
to_string(version)
{:ok, %Version{patch: patch, pre: pre} = version} ->
to_string(%{version | patch: patch + 1, pre: ["dev" | pre]})
:error ->
Mix.shell().error("Failed to parse, falling back to 0.0.0")
"0.0.0"
end
end
defp git_vsn() do
case System.cmd("git", ~w[describe --dirty=+dirty]) do
{version, 0} ->
String.trim_leading(String.trim(version), "v")
{_, code} ->
Mix.shell().error("Git exited with code #{code}, falling back to 0.0.0")
"0.0.0"
end
end
def project do
[
app: :core,
version: version(),
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Core.Application, []},
extra_applications: [:logger, :crypto, :porcelain]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:sentry, "8.0.6"},
{:ecto_sql, "~> 3.9.1"},
{:libvault, "~> 0.2.0"},
{:ecto, "~> 3.9.0", override: true},
{:postgrex, ">= 0.0.0"},
{:ex_machina, "~> 2.7.0", only: :test},
{:comeonin, "~> 5.3.0"},
{:argon2_elixir, "~> 2.0"},
{:piazza_core, "~> 0.3.8", git: "https://github.com/michaeljguarino/piazza_core"},
{:inet_cidr, "~> 1.0.0"},
{:dns, "~> 2.4.0"},
{:bamboo, "~> 2.2.0"},
{:parallax, "~> 1.0"},
{:bourne, "~> 1.1"},
{:flow, "~> 0.15.0"},
{:joken, "~> 2.5.0"},
{:guardian, "~> 1.2.1"},
{:arc, "~> 0.11.0"},
{:arc_gcs, "~> 0.2.0"},
{:porcelain, "~> 2.0"},
{:ex_aws, "~> 2.4.1"},
{:ex_aws_s3, "~> 2.3.3"},
{:ex_aws_sts, "~> 2.3.0"},
{:configparser_ex, "~> 4.0"},
{:sweet_xml, "~> 0.7.3"},
{:arc_ecto, "~> 0.11.3"},
{:dictionary, "~> 0.1.0"},
{:mojito, "~> 0.7.0"},
{:nebulex, "== 2.4.2"},
{:kazan, "~> 0.11", github: "michaeljguarino/kazan"},
{:workos, "~> 0.1.3"},
{:decorator, "~> 1.3"}, #=> For using Caching Annotations
{:botanist, "~> 0.1.0", git: "https://github.com/michaeljguarino/botanist.git", branch: "ecto3"},
{:x509, "~> 0.8.5"},
{
:briefly,
git: "https://github.com/CargoSense/briefly",
ref: "b0fd495bf0c5ef2c44de2791a8cc7a20813c7d36"
},
{:yaml_elixir, "~> 2.9.0"},
{:timex, "~> 3.7.9"},
{:oauth2, "~> 2.0.1"},
{:websockex, "~> 0.4"},
{:hackney, "~> 1.18.0", override: true},
{:tzdata, "~> 1.1.0", override: true},
{:prometheus_ex, "~> 3.0"},
{:stripity_stripe, "~> 2.17.1"},
{:conduit, "~> 0.12"},
{:conduit_amqp, "~> 0.6.3"},
{:rabbit_common, "~> 3.11.4", override: true},
{:amqp, "~> 3.2", override: true},
{:mime, "~> 1.2"},
{:ex_image_info, "~> 0.2.4"},
{:instream, "~> 1.0"},
{:swarm, "~> 3.4.0"},
{:poison, "~> 3.0"},
{:cloudflare, "~> 0.2"},
{:mint, "~> 1.0", override: true},
{:mimic, "~> 1.7.4", only: :test},
{:google_api_iam, "~> 0.40"},
{:google_api_cloud_resource_manager, "~> 0.41"},
{:google_api_cloud_billing, "~> 0.23"},
{:google_api_service_usage, "~> 0.18"},
]
end
defp aliases do
[
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
end