Current section
Files
Jump to
Current section
Files
mix.exs
# Copyright 2018 Comcast Cable Communications Management, LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
defmodule Ctex.MixProject do
use Mix.Project
def project do
[
app: :ctex,
description: description(),
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[extra_applications: [:mix, :common_test]]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:cth_readable, "~> 1.4.0"},
{:ex_doc, "~> 0.18.3", only: :dev}
]
end
defp description do
"A Mix task and helpers for running common_test suites"
end
defp package do
[
licenses: ["Apache 2.0"],
maintainers: ["Sean Cribbs", "Zeeshan Lakhani"],
files: ["lib", "README*", "mix.exs", "CONTRIBUTING", "NOTICE", "LICENSE"],
links: %{
"Github" => "https://github.com/Comcast/ctex"
}
]
end
def docs do
[
main: "readme",
extras: ["README.md"]
]
end
end