Skip to content

Commit

Permalink
fix propcheck and declare xmerl as an extra app required to be turned on
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Wyma committed Feb 8, 2024
1 parent 8ab9276 commit 4360c65
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 4360c65

Please sign in to comment.