From 4360c65bccbbe9ec80c45dfae41a6bfc12867fe3 Mon Sep 17 00:00:00 2001 From: Allen Wyma <> Date: Thu, 8 Feb 2024 15:16:43 +0800 Subject: [PATCH] fix propcheck and declare xmerl as an extra app required to be turned on --- mix.exs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mix.exs b/mix.exs index ed90d37..0a70990 100644 --- a/mix.exs +++ b/mix.exs @@ -19,19 +19,18 @@ defmodule Elixlsx.Mixfile do end def application do - [ applications: [:xmerl, :propcheck] ] + [extra_applications: [:xmerl]] end defp deps do [ - {:credo, "~> 1.6", only: [:dev, :test]}, + {:credo, "~> 1.6", only: [:dev, :test], runtime: false}, {:propcheck, "~> 1.4", only: [:dev, :test]}, {:ex_doc, ">= 0.0.0", only: [:dev], runtime: false}, - {:dialyxir, "~> 1.0", only: [:dev], runtime: false}, + {:dialyxir, "~> 1.0", only: [:dev], runtime: false} ] end - defp docs do [ extras: ["CHANGELOG.md", "README.md"],