-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
35 lines (32 loc) · 876 Bytes
/
mix.exs
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
27
28
29
30
31
32
33
34
35
defmodule MixStar.Mixfile do
use Mix.Project
def project do
[ app: :mixstar,
name: "MixStar",
version: "0.1.1",
elixir: "~> 1.0",
package: [
contributors: ["Takayuki Matsubara"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/ma2gedev/mix-star"}
],
description: "MixStar starred GitHub repository that depends on your project",
deps: deps ]
end
# Configuration for the OTP application
def application do
[
applications: []
]
end
# Returns the list of dependencies in the format:
# { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" }
#
# To specify particular versions, regardless of the tag, do:
# { :barbat, "~> 0.1", github: "elixir-lang/barbat.git" }
defp deps do
[
{ :ex_doc, "~> 0.6", only: :dev }
]
end
end