1defmodule Mix.MixProject do
2  use Mix.Project
3
4  def project do
5    [
6      app: :mix,
7      build_per_environment: false,
8      version: System.version(),
9      escript: [main_module: Mix.CLI]
10    ]
11  end
12
13  def application do
14    [
15      registered: [Mix.State, Mix.TasksServer, Mix.ProjectStack],
16      mod: {Mix, []},
17      env: [colors: []]
18    ]
19  end
20end
21