-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
43 lines (37 loc) · 976 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 Artifact.Mixfile do
use Mix.Project
@version "0.4.0"
def project do
[app: :artifact,
build_embedded: Mix.env == :prod,
deps: deps,
description: """
File upload and on-the-fly processing for Elixir
""",
elixir: "~> 1.2",
package: package,
source_url: "https://github.com/doomspork/artifact",
start_permanent: Mix.env == :prod,
version: @version]
end
def application do
[applications: [:logger, :porcelain]]
end
def package do
[maintainers: ["Sean Callan"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["Apache 2.0"],
links: %{github: "https://github.com/doomspork/artifact"}]
end
def deps do
[
{:poolboy, "~> 1.5.1"},
{:porcelain, "~> 2.0"},
{:plug, "~> 1.1.1"},
# Automatic test runner
{:mix_test_watch, ">= 0.0.0", only: :dev},
# Style linter
{:credo, ">= 0.0.0", only: ~w(dev test)a},
]
end
end