defmodule Mdns.Mixfile do use Mix.Project def project do [app: :mdns, version: "1.0.0", elixir: "~> 1.5", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, description: description(), package: package(), deps: deps()] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do [extra_applications: [:logger], mod: {Mdns, []}, env: [port: 5353] ] end def description do """ A simple mDNS (zeroconf, bonjour) server and client for device discovery on your local network. """ end def package do [ name: :mdns, files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Christopher Steven Coté"], licenses: ["Apache License 2.0"], links: %{"GitHub" => "https://github.com/NationalAssociationOfRealtors/mdns", "Docs" => "https://github.com/NationalAssociationOfRealtors/mdns"} ] end defp deps do [{:dns, "~> 1.0"}, {:ex_doc, ">= 0.0.0", only: :dev}] end end