2023-11-30 12:11:39 -05:00
<?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>
<groupId > com.baeldung.spring</groupId>
<artifactId > spring-reactive-performance</artifactId>
<version > 1.0.0-SNAPSHOT</version>
<name > spring-reactive-performance</name>
<packaging > jar</packaging>
<description > Spring Reactive Performance</description>
<parent >
<groupId > com.baeldung.spring.reactive</groupId>
<artifactId > spring-reactive-modules</artifactId>
<version > 1.0.0-SNAPSHOT</version>
</parent>
<dependencyManagement >
<dependencies >
<dependency >
<!-- Import dependency management from Spring Boot -->
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-dependencies</artifactId>
<version > ${spring-boot.version}</version>
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies >
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-webflux</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-webflux</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-data-mongodb</artifactId>
</dependency>
</dependencies>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<source > 21</source>
<target > 21</target>
<!-- Needed due to a bug with JDK 21, described here: https://issues.apache.org/jira/browse/MCOMPILER - 546?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment - tabpanel&focusedCommentId=17767513 -->
<debug > false</debug>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
<configuration >
<argLine > --enable-preview</argLine>
</configuration>
</plugin>
</plugins>
</build>
<properties >
<java.version > 21</java.version>
<spring-boot.version > 3.2.0</spring-boot.version>
</properties>
2024-02-06 05:58:33 -05:00
2023-11-30 12:11:39 -05:00
</project>