-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
26 lines (23 loc) · 705 Bytes
/
mix.exs
File metadata and controls
26 lines (23 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
defmodule Lexthink.Mixfile do
use Mix.Project
def project do
[ app: :lexthink,
version: "0.0.1",
elixir: "~> 0.10.0",
compilers: [:protobuffs, :elixir, :app],
deps: deps ]
end
# Configuration for the OTP application
def application do
[ mod: { Lexthink, [] },
env: [{:timeout, 30 * 1000}] ]
end
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[
{ :mix_protobuffs, "~> 0.9.0", git: "git://github.com/taybin/mix_protobuffs.git", branch: "test_branch"},
{ :protobuffs, "~> 0.8.0", git: "git://github.com/basho/erlang_protobuffs.git" }
]
end
end