forked from ocsf/ocsf-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
84 lines (75 loc) · 2.41 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
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
defmodule Schema.MixProject do
use Mix.Project
@version "2.58.0"
def project do
build = System.get_env("GITHUB_RUN_NUMBER") || "SNAPSHOT"
[
releases: [
schema_server: [
steps: [:assemble, :tar, &write_version/1],
include_executables_for: [:unix]
]
],
app: :schema_server,
version: "#{@version}-#{build}",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers() ++ [:phoenix_swagger],
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Schema.Application, []},
extra_applications: [:logger, :crypto, :runtime_tools, :earmark, :html_entities]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:phoenix, "~> 1.7.0"},
{:phoenix_view, "~> 2.0"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.4", only: :dev},
{:jason, "~> 1.4"},
{:plug_cowboy, "~> 2.6"},
{:number, "~> 1.0"},
{:elixir_uuid, "~> 1.6", hex: :uuid_utils},
{:phoenix_swagger, "~> 0.8"},
{:ex_json_schema, "~> 0.7"},
{:phoenix_markdown, "~> 1.0"},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false}
]
end
# Write the version number
defp write_version(rel) do
case System.argv() do
["release" | _] ->
# Write the version number
version = Mix.Project.config()[:version]
File.write(".version", version)
_ ->
:ok
end
rel
end
end