forked from CargoSense/vex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
39 lines (34 loc) · 952 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
defmodule Vex.Mixfile do
use Mix.Project
def project do
[
app: :vex,
version: "0.9.0",
elixir: "~> 1.6",
deps: deps(),
consolidate_protocols: Mix.env() != :test,
package: package(),
# Docs
name: "Vex",
source_url: "https://github.com/CargoSense/vex",
homepage_url: "https://github.com/CargoSense/vex",
docs: [main: "readme", extras: ["README.md"]]
]
end
# Configuration for the OTP application
def application do
[applications: [:eex]]
end
defp deps do
[{:ex_doc, "~> 0.19", only: :dev, runtime: false}]
end
defp package do
[
contributors: ["Bruce Williams", "Ben Wilson", "John Hyland"],
maintainers: ["Bruce Williams", "Ben Wilson", "John Hyland"],
licenses: ["MIT License"],
description: "An extensible data validation library for Elixir",
links: %{github: "https://github.com/CargoSense/vex"}
]
end
end