2021-12-15 09:22:21 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-03-13 14:48:44 +05:30
|
|
|
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">
|
2021-12-15 09:22:21 +05:30
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-03-13 14:48:44 +05:30
|
|
|
<artifactId>spring-reactive</artifactId>
|
2021-12-15 09:22:21 +05:30
|
|
|
|
|
|
|
<parent>
|
2023-09-27 09:22:47 +03:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-3</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-10-03 07:25:06 +03:00
|
|
|
<relativePath>../../parent-boot-3</relativePath>
|
2021-12-15 09:22:21 +05:30
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-09-27 09:22:47 +03:00
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
2021-12-15 09:22:21 +05:30
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-09-27 09:22:47 +03:00
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2021-12-15 09:22:21 +05:30
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-09-25 06:42:56 +03:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-09-27 09:22:47 +03:00
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2023-09-25 06:42:56 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-09-27 09:22:47 +03:00
|
|
|
<groupId>io.reactivex.rxjava2</groupId>
|
|
|
|
<artifactId>rxjava</artifactId>
|
|
|
|
<version>${rxjava.version}</version>
|
2023-09-25 06:42:56 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-09-27 09:22:47 +03:00
|
|
|
<groupId>io.projectreactor.kafka</groupId>
|
|
|
|
<artifactId>reactor-kafka</artifactId>
|
|
|
|
<version>${reactor-kafka.version}</version>
|
2021-12-15 09:22:21 +05:30
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-09-27 09:22:47 +03:00
|
|
|
<artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
|
2021-12-15 09:22:21 +05:30
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-test</artifactId>
|
2023-09-27 09:22:47 +03:00
|
|
|
<version>${reactor.version}</version>
|
2023-09-25 06:42:56 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-09-27 09:22:47 +03:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-12-15 09:22:21 +05:30
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2023-09-27 09:22:47 +03:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>integration-lite-first</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2023-09-25 06:42:56 +03:00
|
|
|
<configuration>
|
2023-09-27 09:22:47 +03:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<logback.configurationFile>${project.basedir}/src/test/resources/logback-test.xml</logback.configurationFile>
|
|
|
|
</systemPropertyVariables>
|
2023-09-25 06:42:56 +03:00
|
|
|
</configuration>
|
2023-09-27 09:22:47 +03:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>integration-lite-second</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<logback.configurationFile>${project.basedir}/src/test/resources/logback-test.xml</logback.configurationFile>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-09-03 16:29:14 +03:30
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-09-27 09:22:47 +03:00
|
|
|
<skip>true</skip>
|
2023-09-03 16:29:14 +03:30
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2021-12-15 09:22:21 +05:30
|
|
|
<properties>
|
2023-12-11 09:58:51 +02:00
|
|
|
<reactor.version>3.6.0</reactor.version>
|
2023-09-27 09:22:47 +03:00
|
|
|
<reactor-kafka.version>1.3.10</reactor-kafka.version>
|
|
|
|
<rxjava.version>2.2.21</rxjava.version>
|
2021-12-15 09:22:21 +05:30
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|