Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Gpp.MixProject do
use Mix.Project
@name "Gpp"
@version "0.1.2"
@repo_url "https://github.com/Adaptmx/gpp"
def project do
[
app: :gpp,
version: @version,
elixir: "~> 1.12",
description: "Decode IAB GPP strings including the region specific sections they contain.",
package: package(),
docs: docs(),
start_permanent: Mix.env() == :prod,
name: @name,
source_url: @repo_url,
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.27", only: :dev, runtime: false},
{:benchee, "~> 1.0", only: :dev},
{:eflambe, "~> 0.3.0", only: :dev}
]
end
defp package do
%{
licenses: ["Apache-2.0"],
maintainers: ["Nico Piderman"],
links: %{"GitHub" => @repo_url}
}
end
defp docs do
[
main: "Gpp",
source_ref: "v#{@version}",
source_url: @repo_url
]
end
end