Skip to content

Commit

Permalink
Update mix.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatakeshi committed Jun 28, 2024
1 parent 7275e75 commit fe371ae
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
Empty file added CHANGELOG.md
Empty file.
20 changes: 12 additions & 8 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
defmodule Gitly.MixProject do
use Mix.Project

def project do
@version "0.1.0"
@source_url "https://github.com/iwatakeshi/gitly_ex"

def(project) do
[
name: "Gitly",
app: :gitly,
version: "0.1.0",
source_url: "https://github.com/iwatakeshi/gitly_ex",
version: @version,
source_url: @source_url,
elixir: "~> 1.17",
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
Expand All @@ -18,11 +21,13 @@ defmodule Gitly.MixProject do
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"test.watch": :test,
"test.watch": :test
],
docs: [
main: "Gitly",
extras: ["README.md", "LICENSE"]
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
extras: ["README.md", "LICENSE", "CHANGELOG.md"],
]
]
end
Expand All @@ -41,10 +46,9 @@ defmodule Gitly.MixProject do
{:briefly, "~> 0.5.1"},
{:mox, "~> 1.1", only: :test},
{:excoveralls, "~> 0.18.1", only: :test},
{:plug, "~> 1.16", only: :test },
{:plug, "~> 1.16", only: :test},
{:ex_doc, "~> 0.34.1", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.2", only: [:dev, :test], runtime: false}

]
end

Expand Down

0 comments on commit fe371ae

Please sign in to comment.