Packages

Convert an Elixir map to an XML document

Current section

Files

Jump to
Raw

mix.exs

defmodule MapToXml.MixProject do
use Mix.Project
def project do
[
app: :elixir_map_to_xml,
version: "0.1.0",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
description: "Convert an Elixir map to an XML document",
name: "MapToXml",
docs: [
main: "MapToXml"
]
]
end
def package do
[
maintainers: ["Gunnar Fornes"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/gunnar2k/elixir-map-to-xml"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:xml_builder, "~> 2.1.1"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.1", only: [:dev, :test]},
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev, :test], runtime: false}
]
end
end