defmodule Crawler.Mixfile do use Mix.Project @source_url "https://github.com/fredwu/crawler" @version "1.2.0" def project do [ app: :crawler, version: @version, elixir: "~> 1.5", elixirc_paths: elixirc_paths(Mix.env()), package: package(), name: "Crawler", description: "A high performance web crawler in Elixir.", start_permanent: Mix.env() == :prod, deps: deps(), docs: docs(), test_coverage: [tool: ExCoveralls], preferred_cli_env: [coveralls: :test], aliases: [publish: ["hex.publish", &git_tag/1]], dialyzer: [ plt_add_apps: [:crawler], flags: [:error_handling, :race_conditions, :underspecs] ] ] end def application do [ mod: {Crawler, []}, extra_applications: [:logger, :runtime_tools, :observer, :wx] ] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp deps do [ {:httpoison, "~> 2.1"}, {:floki, "~> 0.30"}, {:opq, "~> 4.0"}, {:retry, "~> 0.10"}, {:plug_cowboy, "~> 2.0", only: :test}, {:ex_doc, ">= 0.0.0", only: :dev}, {:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false}, {:bypass, "~> 2.1", only: :test}, {:excoveralls, "~> 0.7", only: :test} ] end defp package do [ maintainers: ["Fred Wu"], licenses: ["MIT"], links: %{"GitHub" => @source_url} ] end defp git_tag(_args) do System.cmd("git", ["tag", "v" <> Mix.Project.config()[:version]]) System.cmd("git", ["push"]) System.cmd("git", ["push", "--tags"]) end defp docs do [ extras: ["CHANGELOG.md": [title: "Changelog"], "README.md": [title: "Overview"]], main: "readme", source_url: @source_url, source_ref: "v#{@version}", formatters: ["html"] ] end end