Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.82 KB | None | 0 0
  1. defmodule KV.Mixfile do
  2.   use Mix.Project
  3.  
  4.   def project do
  5.     [app: :kv,
  6.      version: "0.0.1",
  7.      elixir: "~> 1.0",
  8.      build_embedded: Mix.env == :prod,
  9.      start_permanent: Mix.env == :prod,
  10.      deps: deps,
  11.      deps_path: "../../deps",
  12.      lockfile: "../../mix.lock"]
  13.   end
  14.  
  15.   # Configuration for the OTP application
  16.   #
  17.   # Type `mix help compile.app` for more information
  18.   def application do
  19.     [applications: [],
  20.      mod: {KV, []}]
  21.    end
  22.  
  23.   # Dependencies can be Hex packages:
  24.   #
  25.   #   {:mydep, "~> 0.3.0"}
  26.   #
  27.   # Or git/path repositories:
  28.   #
  29.   #   {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
  30.   #
  31.   # Type `mix help deps` for more examples and options
  32.   defp deps do
  33.     [{:kv, in_umbrella: true},
  34.      {:pipe, github: "batate/elixir-pipes"}]
  35.   end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement