forked from chulkilee/ex_force
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
56 lines (48 loc) · 1.26 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
defmodule ExForce.Mixfile do
use Mix.Project
@version "0.4.1"
def project do
[
app: :ex_force,
version: @version,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
# hex
description: "Simple Elixir wrapper for Salesforce REST API",
# ex_doc
name: "ExForce",
source_url: "https://github.com/chulkilee/ex_force",
homepage_url: "https://github.com/chulkilee/ex_force",
docs: [main: "ExForce"],
# test
test_coverage: [tool: ExCoveralls]
]
end
def application do
[]
end
defp deps do
[
{:tesla, "~> 1.3"},
{:jason, "~> 1.0"},
{:bypass, "~> 2.1", only: :test},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:excoveralls, "~> 0.14", only: :test},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:inch_ex, "~> 2.0", only: [:dev, :test]}
]
end
defp package do
[
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/chulkilee/ex_force",
"Changelog" => "https://github.com/chulkilee/ex_force/blob/main/CHANGELOG.md"
},
maintainers: ["Chulki Lee"]
]
end
end