reactor-rabbitmq-streams-autoconfigure-0.0.8.pom

Basic spring boot autoconfigure for reactor-rabbitmq-streams

Checksums

MD5 4c84b3a59e97f741e76fd37fbaec8d36
SHA1 0bcdea9deac28c709dcb035119d8f748b179e063
SHA256 d0ea99214915a704dcdad3dce535263315397a6c53603b99b3625d36788a68b4
SHA512 a63bc6d2906df52dab62948ea87d66ebf93ed3356d5d4cb61efb130585a4f6f784944c33f9e4456c9adc1b69a327520b193d2d87265118b111509556d39bf406

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.8</version>
			<relativePath>../reactor-rabbitmq-streams-common</relativePath>
	</parent>
	<groupId>com.pivotal.rabbitmq</groupId>
	<artifactId>reactor-rabbitmq-streams-autoconfigure</artifactId>
	<version>0.0.8</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.8</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>