Skip to content

Commit

Permalink
Change application name to "aws_elixir" (#66)
Browse files Browse the repository at this point in the history
This is needed to avoid conflicts with aws-erlang's application name.

It solves aws-beam/aws-codegen#73
  • Loading branch information
philss authored Mar 30, 2021
1 parent 061ac7d commit f2dabe2
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule AWS.Mixfile do

def project do
[
app: :aws,
app: :aws_elixir,
description: "AWS clients for Elixir",
package: package(),
version: @version,
Expand All @@ -22,22 +22,10 @@ defmodule AWS.Mixfile do
]
end

# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[extra_applications: [:logger, :crypto, :xmerl, :eex]]
end

# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type `mix help deps` for more examples and options
defp deps do
[
{:dialyxir, "~> 0.5.0", only: [:dev]},
Expand Down

0 comments on commit f2dabe2

Please sign in to comment.