Skip to content

Commit cc8e124

Browse files
authored
Mixfile: extra_applications instead of applications (#203)
* extra_applications instead of applications * get mix docs working
1 parent fed973b commit cc8e124

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ defmodule Mongo.Ecto.Mixfile do
2222
#
2323
# Type `mix help compile.app` for more information.
2424
def application do
25-
[applications: [:ecto, :mongodb_driver, :logger, :telemetry]]
25+
[extra_applications: [:logger]]
2626
end
2727

2828
defp deps do
2929
[
3030
{:credo, "~> 1.5.6", only: [:dev, :test], runtime: false},
3131
{:dialyxir, "~> 1.1.0", only: :dev, runtime: false},
3232
{:ecto, "~> 3.12"},
33-
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
33+
{:ex_doc, ">= 0.0.0", only: :docs, runtime: false},
3434
{:excoveralls, "~> 0.16", only: :test},
3535
{:mongodb_driver, "~> 1.4"},
3636
{:telemetry, ">= 0.4.0"}

0 commit comments

Comments
 (0)