diff --git a/apps/admin/mix.exs b/apps/admin/mix.exs index 518e2528..6a9fb002 100644 --- a/apps/admin/mix.exs +++ b/apps/admin/mix.exs @@ -7,6 +7,7 @@ defmodule Legendary.Admin.MixProject do [ app: :admin, version: "0.1.0", + version: @version, build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps", diff --git a/apps/content/mix.exs b/apps/content/mix.exs index f3db0350..747d736f 100644 --- a/apps/content/mix.exs +++ b/apps/content/mix.exs @@ -6,7 +6,7 @@ defmodule Legendary.Content.MixProject do def project do [ app: :content, - version: "0.1.0", + version: @version, build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps", diff --git a/apps/core/mix.exs b/apps/core/mix.exs index b2146ef0..ee4e03e5 100644 --- a/apps/core/mix.exs +++ b/apps/core/mix.exs @@ -6,7 +6,7 @@ defmodule Legendary.Core.MixProject do def project do [ app: :core, - version: "0.1.0", + version: @version, build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps", diff --git a/mix.exs b/mix.exs index 482fbc68..cae77d16 100644 --- a/mix.exs +++ b/mix.exs @@ -6,6 +6,7 @@ defmodule Legendary.Mixfile do def project do [ name: "Legendary", + version: @version, apps_path: "apps", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,