-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
36 lines (31 loc) · 818 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
defmodule LinkShrinkex.Mixfile do
use Mix.Project
def project do
[ app: :link_shrinkex,
version: String.strip(File.read!("VERSION")),
elixir: "~> 1.0",
deps: deps,
source_url: "https://github.com/jonahoffline/link_shrinkex",
description: description,
package: package
]
end
# Configuration for the OTP application
def application do
[applications: [:jsex, :inets, :ssl]]
end
defp description do
"""
Google's URL Shortener API for Elixir.
"""
end
defp package do
[contributors: ["Jonah Ruiz"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/jonahoffline/link_shrinkex"}]
end
# Returns the list of dependencies in the format:
defp deps do
[{ :jsex, "2.1.0", github: "talentdeficit/jsex" }]
end
end