forked from drewkerrigan/riak-elixir-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (38 loc) · 1.07 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
defmodule Riak.Mixfile do
use Mix.Project
def project do
[ app: :riak,
version: "1.0.0",
elixir: "~> 1.0",
deps: deps,
build_per_environment: false,
name: "Riak Elixir Client",
source_url: "https://github.com/drewkerrigan/riak-elixir-client",
description: description,
package: package ]
end
# Configuration for the OTP application
def application do
[ applications: [ :pooler ],
included_applications: [ :riakc ] ]
end
defp deps do
[ {:earmark, only: :dev},
{:ex_doc, only: :dev},
{:linguist, "~> 0.1"},
{:pooler, "~> 1.5"},
{:riakc, "~> 2.1"} ]
end
defp description do
"""
A Riak client written in Elixir.
"""
end
defp package do
[ files: ~w(config doc examples lib test LICENSE mix.exs mix.lock README.md THANKS),
maintainers: [ "Drew Kerrigan", "Eduardo Gurgel" ],
licenses: [ "Apache 2.0" ],
links: %{"GitHub" => "https://github.com/drewkerrigan/riak-elixir-client",
"Documentation" => "http://hexdocs.pm/riak"} ]
end
end