reactor-rabbitmq-streams-autoconfigure-0.0.1.pom

Basic spring boot autoconfigure for reactor-rabbitmq-streams

Checksums

MD5 1a701c4b9d618ee640de4cd319bd0d77
SHA1 bbc990917a7b528881b4f6343226c9e75d084403
SHA256 05f05a398d3cd003eec80fe1a8623c97f3a102be0e3dc27b95c7c14fc069b0e1
SHA512 dab4fa59d0dd43d3d199be9187d9c0ab2c4f2ba449470cd526874b8c35fab0a6d326584b45631e39448b23f09eebdfb87d8476fcd92f718dcc5d399dbf3ab7a4

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

	<dependencies>
		<dependency>
			<groupId>com.pivotal.rabbitmq</groupId>
			<artifactId>reactor-rabbitmq-streams</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-autoconfigure</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
		</dependency>
        <dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>

    </dependencies>

	<dependencyManagement>

		<dependencies> <!-- The parent should provide all that -->
			<dependency>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-dependencies</artifactId>
				<version>2.1.5.RELEASE</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
			<dependency>
				<groupId>com.pivotal.rabbitmq</groupId>
				<artifactId>reactor-rabbitmq-streams-bom</artifactId>
				<version>0.0.1</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<build>
			<plugins>
				<plugin>
				 <groupId>org.apache.maven.plugins</groupId>
				 <artifactId>maven-javadoc-plugin</artifactId>
				 <configuration>
					 <doclint>none</doclint>
				 </configuration>
			 </plugin>
		 </plugins>
	 </build>
</project>