-
Notifications
You must be signed in to change notification settings - Fork 9
/
mix.exs
69 lines (65 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
defmodule MuAuthorization.MixProject do
use Mix.Project
@github_url "https://github.com/mu-semtech/mu-authorization"
def project do
[
app: :"mu-authorization",
version: "0.5.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
erlc_paths: ["parser-generator"],
deps: deps(),
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
name: "mu-authorization",
description:
"A proxy server that offers a authorization/delta wrapper for a SPARQL endpoint.",
source_url: @github_url,
homepage_url: @github_url,
files: ~w(mix.exs lib LICENSE.md README.md CHANGELOG.md),
package: [
maintainers: ["Versteden Aad", "Langens Jonathan"],
licenses: ["MIT"],
links: %{
"GitHub" => @github_url
}
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :httpoison, :poison, :plug, :cowboy],
mod: {SparqlServer, []},
env: []
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:accessible, "~> 0.2.1"},
{:ex_doc, "~> 0.18", only: :dev, runtime: false},
{:exprof, "~> 0.2.0"},
{:junit_formatter, "~> 2.1", only: :test},
{:credo, "~> 1.6.7", only: [:dev, :test]},
{:excoveralls, "~> 0.8", only: :test},
{:dialyxir, "~> 1.0.0-rc.6", only: [:dev], runtime: false},
{:httpoison, "~> 1.1"},
{:poison, "~> 3.1"},
{:poolboy, "~> 1.5.1"},
{:plug, "~> 1.5"},
{:cowboy, "~> 2.4"},
{:plug_cowboy, "~> 2.0"},
{:observer_cli, "~> 1.5"}
]
end
end