-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
43 lines (38 loc) · 1006 Bytes
/
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
defmodule Workshop.Mixfile do
use Mix.Project
defp description do
"""
Mix tasks for creating and running interactive workshops for teaching
people how to program in Elixir, and other things.
"""
end
def project do
[app: :workshop,
version: "0.5.1",
description: description,
package: package,
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp package do
%{
licenses: ["Apache v2.0"],
maintainers: [
"Martin Gausby"
],
links: %{
"GitHub" => "https://github.com/gausby/workshop",
"Bugs" => "https://github.com/gausby/workshop/issues"
},
files: ~w(lib config mix.exs LICENSE README*)
}
end
# This project should not have any third-party dependencies as it should
# be able to build to, and be distributed as, a mix archive.
defp deps, do: []
end