/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-reactive-modules/pom.xml
84 строки
3 KB
anuragkumawat
JAVA-38468 Fix references to parents (#17348)
18 авг 2024, 16:21
Не верифицирован
18 авг 2024, 16:21
618d605
Код
Авторство
О чём код?
<?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> <packaging>pom</packaging> <name>spring-reactive-modules</name> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-boot-3</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>../parent-boot-3</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> <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> <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> <build> <pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </pluginManagement> </build> <properties> <reactor.version>3.6.0</reactor.version> </properties> </project>