forked from stuart/elixir-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
50 lines (46 loc) · 1.32 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
defmodule WebDriver.Mixfile do
use Mix.Project
def project do
[ app: :webdriver,
version: "0.7.2",
description: "Webdriver protocol for driving web browsers.",
source_url: "https://github.com/stuart/elixir-webdriver",
homepage_url: "http://stuart.github.io/elixir-webdriver",
package: package,
deps: deps,
docs: [
readme: true,
main: "README"
]
]
end
# Configuration for the OTP application
def application do
[
mod: { WebDriver, []},
registered: [ :webdriver ],
applications: [ :httpotion ],
env: [ debug_browser: false ]
]
end
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.0"},
{:httpotion, "~> 1.0.0"},
{:jazz, "~> 0.2.0"},
{:mock, github: "jjh42/mock", only: :test},
{:earmark, "~>0.1.10", only: :dev},
{:ex_doc, "~>0.6", only: :dev}
]
end
defp package do
[
contributors: ["Stuart Coyle", "Carl Woodward"],
licenses: ["MIT License"],
links: %{"GitHub" => "https://github.com/stuart/elixir-webdriver",
"Docs" => "http://stuart.github.io/elixir-webdriver/"}
]
end
end