File: mix.exs

package info (click to toggle)
elixir-lang 1.19.5.dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 15,524 kB
  • sloc: erlang: 12,234; sh: 321; makefile: 288
file content (15 lines) | stat: -rw-r--r-- 308 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: 2021 The Elixir Team
# SPDX-FileCopyrightText: 2012 Plataformatec

defmodule Elixir.MixProject do
  use Mix.Project

  def project do
    [
      app: :elixir,
      version: System.version(),
      build_per_environment: false
    ]
  end
end