<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>net.reini</groupId>
  <artifactId>rabbitmq-cdi</artifactId>
  <version>1.5.0</version>
  <name>RabbitMQ JavaEE/JakartaEE CDI enabler</name>
  <description>Enables CDI based usage of RabbitMQ within a JavaEE/JakartaEE application.</description>
  <url>https://github.com/reinhapa/rabbitmq-cdi</url>
  <inceptionYear>2015</inceptionYear>
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://spdx.org/licenses/MIT.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>reinhapa</id>
      <name>Patrick Reinhart</name>
      <email>patrick@reini.net</email>
      <roles>
        <role>developer</role>
      </roles>
    </developer>
    <developer>
      <id>ohumbel</id>
      <name>Otmar Humbel</name>
      <email>ohumbel@gmail.com</email>
      <roles>
        <role>developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/reinhapa/rabbitmq-cdi.git</connection>
    <developerConnection>scm:git://github.com/reinhapa/rabbitmq-cdi.git</developerConnection>
    <url>https://github.com/reinhapa/rabbitmq-cdi</url>
  </scm>
  <properties/>
  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.32</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.rabbitmq</groupId>
      <artifactId>amqp-client</artifactId>
      <version>5.13.1</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.13.0</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
