reactor-rabbitmq-streams-0.0.7.pom

Reactor RabbitMQ Extension library. It enables a number of streaming capabilities

Checksums

MD5 8e1f48d79f6893ea1123c07c0def7250
SHA1 0488290c5a2c8128d9a05adcaaa2cd45b3524fec
SHA256 2bce4f7d05c96e400c207b5490518754ded343eb9590f5a93d82b668dd9639b2
SHA512 4f62dbde0053e023f62898e4952c13bd14c29714e70ebe675606dad89abeb09ed6a872b7110f1d824aace1ee1a5be0b44958abe6e2c29aa622e21d2777278486

POM

<?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>
        <groupId>com.pivotal.rabbitmq</groupId>
        <artifactId>reactor-rabbitmq-streams-common</artifactId>
        <version>0.0.7</version>
        <relativePath>../reactor-rabbitmq-streams-common</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.pivotal.rabbitmq</groupId>
    <artifactId>reactor-rabbitmq-streams</artifactId>
    <version>0.0.7</version>
    <name>reactor-rabbitmq-streams</name>
    <description>Reactor RabbitMQ Extension library. It enables a number of streaming capabilities</description>

    <dependencies>
        <dependency>
            <groupId>io.projectreactor.rabbitmq</groupId>
            <artifactId>reactor-rabbitmq</artifactId>
        </dependency>
        <dependency>
            <groupId>com.rabbitmq</groupId>
            <artifactId>http-client</artifactId>
        </dependency>
        <dependency>
            <groupId>io.projectreactor.netty</groupId>
            <artifactId>reactor-netty</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-jdk8</artifactId>
        </dependency>
        <dependency>
            <groupId>io.projectreactor.addons</groupId>
            <artifactId>reactor-extra</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.avro</groupId>
            <artifactId>avro</artifactId>
        </dependency>
        <dependency>
            <groupId>io.projectreactor</groupId>
            <artifactId>reactor-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.2.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>2.23.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.bytebuddy</groupId>
            <artifactId>byte-buddy</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.pivotal.rabbitmq</groupId>
                <artifactId>reactor-rabbitmq-streams-bom</artifactId>
                <version>0.0.7</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <build>
      <plugins>
      <plugin>
          <groupId>org.apache.avro</groupId>
          <artifactId>avro-maven-plugin</artifactId>
          <executions>
              <execution>
                  <phase>generate-test-sources</phase>
                  <goals>
                      <goal>schema</goal>
                  </goals>
                  <configuration>
                      <sourceDirectory>${project.basedir}/src/test/resources/avro/</sourceDirectory>
                      <outputDirectory>${project.basedir}/src/test/java/</outputDirectory>
                  </configuration>
              </execution>
          </executions>
      </plugin>
    </plugins>
    </build>

</project>