Current section
Files
Jump to
Current section
Files
ueberauth_linkedin
mix.exs
mix.exs
defmodule UeberauthLinkedin.Mixfile do
use Mix.Project
@url "https://github.com/fajarmf/ueberauth_linkedin"
def project do
[app: :ueberauth_linkedin,
version: "0.3.1",
name: "Ueberauth LinkedIn Strategy",
elixir: "~> 1.2",
package: package,
source_url: @url,
homepage_url: @url,
description: description,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
docs: docs]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger, :oauth2, :ueberauth]]
end
defp docs do
[extras: docs_extras, main: "readme"]
end
defp docs_extras do
["README.md"]
end
defp description do
"An Ueberauth strategy for LinkedIn authentication"
end
defp deps do
[{:ueberauth, "~> 0.2"},
{:oauth2, "~> 0.8"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.11", only: :dev},
{:dogma, "~> 0.1", only: [:dev, :test]}]
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Fajar Firdaus"],
licenses: ["MIT"],
links: %{"Github": @url}]
end
end