zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

mix.exs (501B)


      1 # This file is only used by Telemetry as a dependency.
      2 # Use rebar3 instead for compiling, running tests, etc.
      3 defmodule Telemetry.MixProject do
      4   use Mix.Project
      5 
      6   {:ok, [{:application, :telemetry, props}]} = :file.consult("src/telemetry.app.src")
      7   @props Keyword.take(props, [:applications, :description, :env, :mod, :vsn])
      8 
      9   def application do
     10     @props
     11   end
     12 
     13   def project do
     14     [
     15       app: :telemetry,
     16       version: to_string(application()[:vsn]),
     17       language: :erlang
     18     ]
     19   end
     20 end