293 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			293 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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>
 | |
|     <artifactId>spring-boot-3-2</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
|     <name>spring-boot-3-2</name>
 | |
|     <description>Demo project for Spring Boot</description>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-boot-3</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-boot-3</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <repositories>
 | |
|         <repository>
 | |
|             <id>repository.spring.release</id>
 | |
|             <name>Spring GA Repository</name>
 | |
|             <url>https://repo.spring.io/milestone</url>
 | |
|         </repository>
 | |
|     </repositories>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-hateoas</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-validation</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-jpa</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-webflux</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.mock-server</groupId>
 | |
|             <artifactId>mockserver-netty</artifactId>
 | |
|             <version>${mockserver.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.mock-server</groupId>
 | |
|             <artifactId>mockserver-client-java</artifactId>
 | |
|             <version>${mockserver.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.h2database</groupId>
 | |
|             <artifactId>h2</artifactId>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-devtools</artifactId>
 | |
|             <scope>runtime</scope>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-configuration-processor</artifactId>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springdoc</groupId>
 | |
|             <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
 | |
|             <version>${springdoc.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.projectlombok</groupId>
 | |
|             <artifactId>lombok</artifactId>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.mapstruct</groupId>
 | |
|             <artifactId>mapstruct</artifactId>
 | |
|             <version>${mapstruct.version}</version>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-docker-compose</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-mongodb</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-actuator</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <version>3.2.0-M2</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter</artifactId>
 | |
|             <version>5.10.0</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter-api</artifactId>
 | |
|             <version>5.10.0</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.postgresql</groupId>
 | |
|             <artifactId>postgresql</artifactId>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-amqp</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.amqp</groupId>
 | |
|             <artifactId>spring-rabbit-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.data</groupId>
 | |
|             <artifactId>spring-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>redis.clients</groupId>
 | |
|             <artifactId>jedis</artifactId>
 | |
|             <version>${jedis.version}</version>
 | |
|             <type>jar</type>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.postgresql</groupId>
 | |
|             <artifactId>r2dbc-postgresql</artifactId>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-r2dbc</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.projectreactor</groupId>
 | |
|             <artifactId>reactor-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-cassandra</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-neo4j</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.kafka</groupId>
 | |
|             <artifactId>spring-kafka</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.kafka</groupId>
 | |
|             <artifactId>spring-kafka-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-couchbase</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.micrometer</groupId>
 | |
|             <artifactId>micrometer-tracing-bridge-brave</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.zipkin.reporter2</groupId>
 | |
|             <artifactId>zipkin-reporter-brave</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.zipkin.reporter2</groupId>
 | |
|             <artifactId>zipkin-sender-urlconnection</artifactId>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <dependencyManagement>
 | |
|         <dependencies>
 | |
|             <dependency>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-dependencies</artifactId>
 | |
|                 <version>3.2.0-M2</version>
 | |
|                 <scope>import</scope>
 | |
|                 <type>pom</type>
 | |
|             </dependency>
 | |
|         </dependencies>
 | |
|     </dependencyManagement>
 | |
| 
 | |
|     <profiles>
 | |
| 
 | |
|         <profile>
 | |
|             <id>docker-compose</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.springframework.boot</groupId>
 | |
|                         <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                         <configuration>
 | |
|                             <mainClass>com.baeldung.dockercompose.DockerComposeApplication</mainClass>
 | |
|                         </configuration>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|         <profile>
 | |
|             <id>connection-details</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.springframework.boot</groupId>
 | |
|                         <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                         <configuration>
 | |
|                             <mainClass>com.baeldung.connectiondetails.ConnectionDetailsApplication</mainClass>
 | |
|                         </configuration>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|     </profiles>
 | |
| 
 | |
|     <build>
 | |
|         <pluginManagement>
 | |
|             <plugins>
 | |
|                 <plugin>
 | |
|                     <groupId>org.apache.maven.plugins</groupId>
 | |
|                     <artifactId>maven-compiler-plugin</artifactId>
 | |
|                     <configuration>
 | |
|                         <annotationProcessorPaths>
 | |
|                             <path>
 | |
|                                 <groupId>org.mapstruct</groupId>
 | |
|                                 <artifactId>mapstruct-processor</artifactId>
 | |
|                                 <version>${mapstruct.version}</version>
 | |
|                             </path>
 | |
|                             <path>
 | |
|                                 <groupId>org.projectlombok</groupId>
 | |
|                                 <artifactId>lombok</artifactId>
 | |
|                                 <version>${lombok.version}</version>
 | |
|                             </path>
 | |
|                             <!-- This is needed when using Lombok 1.18.16 and above -->
 | |
|                             <path>
 | |
|                                 <groupId>org.projectlombok</groupId>
 | |
|                                 <artifactId>lombok-mapstruct-binding</artifactId>
 | |
|                                 <version>${lombok-mapstruct-binding.version}</version>
 | |
|                             </path>
 | |
|                         </annotationProcessorPaths>
 | |
|                     </configuration>
 | |
|                 </plugin>
 | |
|             </plugins>
 | |
|         </pluginManagement>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <mapstruct.version>1.6.0.Beta1</mapstruct.version>
 | |
|         <springdoc.version>2.0.0</springdoc.version>
 | |
|         <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
 | |
|         <mockserver.version>5.14.0</mockserver.version>
 | |
|         <lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
 | |
|         <jedis.version>5.0.2</jedis.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |