Skip to content

Instantly share code, notes, and snippets.

@matehat
Created December 21, 2015 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matehat/8d64502189472d915b57 to your computer and use it in GitHub Desktop.
Save matehat/8d64502189472d915b57 to your computer and use it in GitHub Desktop.
defmodule ISO.Mixfile do
use Mix.Project
def project do
[
app: :iso,
version: "0.1.0",
deps: deps
]
end
def application do
[
applications: [:amqp, :cqex],
mod: { ISO, [] }
]
end
defp deps do
[
{ :exos, "~> 1.0.0" },
{ :amqp, "0.1.3" },
{ :phoenix, "" },
{ :amnesia, github: "meh/amnesia", branch: :master},
{ :poolboy, github: "devinus/poolboy" },
{ :erlport, github: "hdima/erlport" },
{ :jiffy, github: "davisp/jiffy" },
{ :mustache, github: "mururu/elixir-mustache" },
{ :riak_core, github: "basho/riak_core", tag: "2.1.5" },
{ :cqex, github: "matehat/cqex", branch: :master }
]
end
end
defmodule IsoSystem.Mixfile do
use Mix.Project
def project do
[apps_path: "apps",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options.
#
# Dependencies listed here are available only for this project
# and cannot be accessed from applications inside the apps folder
defp deps do
[]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment