-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
40 lines (35 loc) · 1022 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
defmodule DBux.Mixfile do
use Mix.Project
def project do
[app: :dbux,
version: "1.0.3",
elixir: "~> 1.0",
description: description,
package: package,
test_coverage: [tool: ExCoveralls, test_task: "espec"],
preferred_cli_env: [espec: :test, "coveralls": :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:connection, "~> 1.0.2"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:espec, "~> 0.8.21", only: :test},
{:excoveralls, "~> 0.5", only: :test}]
end
defp description do
"""
Bindings for the D-Bus IPC protocol.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "mix.exs", "README*"],
maintainers: ["Marcin Lewandowski"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mspanc/dbux"}]
end
end