reactor-rabbitmq-streams-autoconfigure-0.0.9.pom

Basic spring boot autoconfigure for reactor-rabbitmq-streams

Checksums

MD5 9e65c1475db0e709c9ef5df504794159
SHA1 80b8b51b029a7fb30f1d4400e171122e280e0ddf
SHA256 56787f4604642adc19c22bbdb37c5dc268d26afa092640519b1484fa1df4d182
SHA512 0cf8a6abb8a9a430c561f8a6cb160280b66b210f4a35d69051bbb216dd8afd237fd8ac27473e035e30d2509ca7bb1aad80264e194e1862099bf4b9780d0da040

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">
	<modelVersion>4.0.0</modelVersion>
	<parent>
			<groupId>com.pivotal.rabbitmq</groupId>
			<artifactId>reactor-rabbitmq-streams-common</artifactId>
			<version>0.0.9</version>
			<relativePath>../reactor-rabbitmq-streams-common</relativePath>
	</parent>
	<groupId>com.pivotal.rabbitmq</groupId>
	<artifactId>reactor-rabbitmq-streams-autoconfigure</artifactId>
	<version>0.0.9</version>
	<name>reactor-rabbitmq-streams-autoconfigure</name>
	<description>Basic spring boot autoconfigure for reactor-rabbitmq-streams </description>

	<properties>
		<spring.version>2.4.3</spring.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.pivotal.rabbitmq</groupId>
			<artifactId>reactor-rabbitmq-streams</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-autoconfigure</artifactId>
			<version>${spring.version}</version>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<version>${spring.version}</version>
			<scope>test</scope>
		</dependency>
    <dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<version>${spring.version}</version>
			<optional>true</optional>
		</dependency>

  </dependencies>
	<dependencyManagement>
			<dependencies>
					<dependency>
							<groupId>com.pivotal.rabbitmq</groupId>
							<artifactId>reactor-rabbitmq-streams-bom</artifactId>
							<version>0.0.9</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>