Ruchira Madhushan Rajapaksha 9219e0216e
[BAEL-7546] - How to intercept a request and add headers in WebFlux (#16291)
* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Added the Implementation Code.

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Added the JUnit Tests.

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Updated parent module with the new module reference.

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* CICD Build Fix for PMD Violation

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* CICD Build Fix for PMD Violation

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Use four space indents in the pom file.

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Use 2 space indents line continuation.

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Add test case for Unmodifiable Header map scenario.

* [BAEL-7546] - How to intercept a request and add headers in WebFlux
* Indentation fixes.
2024-04-13 21:01:07 -05:00

84 lines
3.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<groupId>com.baeldung.spring.reactive</groupId>
<artifactId>spring-reactive-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>spring-reactive-modules</name>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2</relativePath>
</parent>
<modules>
<module>spring-reactive-data</module>
<module>spring-reactive-2</module>
<module>spring-reactive-3</module>
<module>spring-reactive-4</module>
<module>spring-reactive-client</module>
<module>spring-reactive-client-2</module>
<module>spring-reactive-filters</module>
<module>spring-reactive-oauth</module>
<!--<module>spring-reactive-security</module> Uncomment after the parent module gets upgraded to Boot 3-->
<module>spring-reactive-data-couchbase</module>
<module>spring-reactive</module>
<module>spring-reactive-exceptions</module>
<module>spring-reactor</module>
<module>spring-webflux-amqp</module>
<!-- the following submodules are commented out as a workaround in order to use java 19+ and SB 3.2.x -->
<!-- <module>spring-reactive-performance</module>-->
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>${reactor.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<version>${reactor.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<reactor.version>3.6.0</reactor.version>
</properties>
</project>