41 lines
984 B
Elixir
41 lines
984 B
Elixir
defmodule Scrapper.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :scrapper,
|
|
version: "0.1.0",
|
|
build_path: "../../_build",
|
|
config_path: "../../config/config.exs",
|
|
deps_path: "../../deps",
|
|
lockfile: "../../mix.lock",
|
|
elixir: "~> 1.16",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
extra_applications: [:logger],
|
|
mod: {Scrapper.Application, []}
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:httpoison, "~> 2.2"},
|
|
{:poison, "~> 5.0"},
|
|
{:ex_aws, "~> 2.1"},
|
|
{:ex_aws_s3, "~> 2.0"},
|
|
{:hackney, "~> 1.9"},
|
|
{:sweet_xml, "~> 0.6"}
|
|
# {:dep_from_hexpm, "~> 0.3.0"},
|
|
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
|
|
# {:sibling_app_in_umbrella, in_umbrella: true}
|
|
]
|
|
end
|
|
end
|