<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
      <artifactId>quarkus-smallrye-reactive-messaging-parent</artifactId>
      <groupId>io.quarkus</groupId>
      <version>0.20.0</version>
      <relativePath>../</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>

   <artifactId>quarkus-smallrye-reactive-messaging</artifactId>
   <name>Quarkus - SmallRye Reactive Messaging - Runtime</name>

   <dependencies>
      <dependency>
         <groupId>io.quarkus</groupId>
         <artifactId>quarkus-arc</artifactId>
      </dependency>
      <dependency>
         <groupId>io.quarkus</groupId>
         <artifactId>quarkus-smallrye-reactive-streams-operators</artifactId>
      </dependency>
      <dependency>
         <groupId>io.quarkus</groupId>
         <artifactId>quarkus-vertx</artifactId>
      </dependency>
      <dependency>
         <groupId>io.smallrye.reactive</groupId>
         <artifactId>smallrye-reactive-messaging-provider-1.0</artifactId>
         <exclusions>
            <exclusion>
               <groupId>com.fasterxml.jackson.core</groupId>
               <artifactId>jackson-core</artifactId>
            </exclusion>
         </exclusions>
      </dependency>
   </dependencies>

   <build>
      <plugins>
         <plugin>
            <groupId>io.quarkus</groupId>
            <artifactId>quarkus-bootstrap-maven-plugin</artifactId>
         </plugin>
         <plugin>
           <artifactId>maven-compiler-plugin</artifactId>
           <configuration>
             <annotationProcessorPaths>
               <path>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-extension-processor</artifactId>
                 <version>${project.version}</version>
               </path>
             </annotationProcessorPaths>
           </configuration>
         </plugin>
      </plugins>
   </build>

</project>
