nulform/mix.exs

23 lines
436 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
[]
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
[
2013-06-15 20:28:32 +00:00
2013-06-13 21:49:31 +00:00
]
end
2013-06-13 17:38:30 +00:00
end