Current section

Files

Jump to
ldap mix.exs
Raw

mix.exs

defmodule LDAP.Mixfile do
use Mix.Project
def project() do
[
app: :ldap,
version: "8.6.3",
description: "LDAP CXC 138 22 Directory Server",
package: package(),
elixir: "~> 1.7",
deps: deps(),
releases: [ldap: [include_executables_for: [:unix], cookie: "SYNRC:LDAP"]]
]
end
def package do
[
files: ~w(doc lib include src man priv mix.exs LICENSE index.html README.md),
licenses: ["ISC"],
maintainers: ["Namdak Tonpa"],
name: :ldap,
links: %{"GitHub" => "https://github.com/enterprizing/ldap"}
]
end
def application() do
[
mod: {:eds_app, []},
extra_applications: [:eldap]
]
end
def deps() do
[
# {:asn1ex, github: "vicentfg/asn1ex", only: :dev},
{:ex_doc, "~> 0.11", only: :dev}
]
end
end