-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmix.exs
66 lines (58 loc) · 1.4 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
defmodule MixTemplates.Mixfile do
use Mix.Project
@name :mix_templates
@version "0.2.3"
@deps [
{ :private, "> 0.0.0" },
{ :ex_doc, "~> 0.14", only: :dev, runtime: false },
]
@extra_applications [
:crypto,
:eex,
:hex,
]
@description """
A modular, open templating system, designed for use with `mix gen`.
You care about this if:
① you'd like different templates than the ones built in to mix,
② you'd like to create your own templates, or
③ you have created a package such as Phoenix or Nerves that needs
its own project setup.
"""
############################################################
def project do
in_production = Mix.env == :prod
[
app: @name,
version: @version,
elixir: ">= 1.4.0",
deps: @deps,
package: package(),
description: @description,
build_embedded: in_production,
start_permanent: in_production,
]
end
def application do
[
extra_applications: @extra_applications,
]
end
defp package do
[
files: [
"lib", "mix.exs", "README.md"
],
maintainers: [
"Dave Thomas <[email protected]>"
],
licenses: [
"Apache 2 (see the file LICENSE.md for details)"
],
links: %{
"GitHub" => "https://github.com/pragdave/mix_templates",
},
version: @version,
]
end
end