diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 14:20:28 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 14:20:28 -0500 |
commit | e1a78528507c4303e0070b185c5006b36555baa5 (patch) | |
tree | 28ac643025f6a4403b72992d41f4dc7550c082b1 /mix.exs | |
parent | [SKIP CI] ci: Add nuget token explicitly (diff) | |
download | locusts-e1a78528507c4303e0070b185c5006b36555baa5.tar locusts-e1a78528507c4303e0070b185c5006b36555baa5.tar.gz locusts-e1a78528507c4303e0070b185c5006b36555baa5.tar.bz2 locusts-e1a78528507c4303e0070b185c5006b36555baa5.tar.lz locusts-e1a78528507c4303e0070b185c5006b36555baa5.tar.xz locusts-e1a78528507c4303e0070b185c5006b36555baa5.tar.zst locusts-e1a78528507c4303e0070b185c5006b36555baa5.zip |
chore: Update dependency management for Gradle and Go modules
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,12 +29,13 @@ defmodule Locusts.MixProject do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} + {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end defp package do [ - files: ["lib", "mix.exs", "docs/BEAM.md"], + files: ["src/locusts.ex", "mix.exs", "docs/BEAM.md"], maintainers: ["Matt Strapp"], licenses: ["0BSD"], links: %{"GitHub" => "https://github.com/locusts-r-us/locusts"} |