-
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In some cases you may want to place the `lockfile` in a parent folder without having an umbrella. With this extra option you avoid compilation at the parent folder which will fail since in such cases there is no `mix.exs`. If this flag is not set then the behaviour remains unchanged.
- Loading branch information
Showing
5 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
defmodule NoUmbrella.Mixfile do | ||
use Mix.Project | ||
|
||
def project do | ||
[ | ||
app: :no_umbrella, | ||
version: "0.1.0", | ||
lockfile: "../mix.lock", | ||
elixir: "~> 1.3", | ||
build_embedded: Mix.env() == :prod, | ||
start_permanent: Mix.env() == :prod, | ||
deps: [], | ||
dialyzer: [no_umbrella: true] | ||
] | ||
end | ||
|
||
# Configuration for the OTP application | ||
# | ||
# Type "mix help compile.app" for more information | ||
def application do | ||
[applications: [:logger, :public_key]] | ||
end | ||
end |