nulform/mix.exs

26 lines
603 B
Elixir
Raw Normal View History

2013-06-13 17:38:30 +00:00
defmodule Nulform.Mixfile do
2013-06-13 21:49:31 +00:00
use Mix.Project
2013-06-13 17:38:30 +00:00
2013-06-13 21:49:31 +00:00
def project do
[ app: :nulform,
version: "0.0.1",
deps: deps ]
end
2013-06-13 17:38:30 +00:00
2013-06-13 21:49:31 +00:00
# Configuration for the OTP application
def application do
[
#mod: {Nulform.run, []}
]
2013-06-13 21:49:31 +00:00
end
2013-06-13 17:38:30 +00:00
2013-06-13 21:49:31 +00:00
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[
{:json, github: "cblage/elixir-json"},
{:excoder, "1.0.0", git: "https://Nicd@bitbucket.org/Nicd/excoder.git"}
2013-06-13 21:49:31 +00:00
]
end
2013-06-13 17:38:30 +00:00
end