Current section
Files
Jump to
Current section
Files
activemq_client
mix.exs
mix.exs
defmodule ActiveMQClient.MixProject do
use Mix.Project
def project do
[
app: :activemq_client,
version: "0.0.2",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
source_url: "https://github.com/auryn31/elixir_activemq_client"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:elixir_stomp_client, "~> 0.0.2"},
{:jason, "~> 1.4"},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp description do
"ActiveMQ client library for Artemis ActiveMQ using STOMP protocol connection. " <>
"Provides high-level interface for message publishing, consuming, and job scheduling."
end
defp package do
[
name: "activemq_client",
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/auryn31/elixir_activemq_client"}
]
end
defp docs do
[
main: "ActiveMQClient",
extras: ["README.md"]
]
end
end