From 070b98775bd3b6ffa3941bc64f65a968d244f5ee Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 19 Mar 2021 15:37:17 -0500 Subject: [PATCH] fix: Actually use version number in mix.exs --- apps/admin/mix.exs | 1 + apps/content/mix.exs | 2 +- apps/core/mix.exs | 2 +- mix.exs | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) 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,