104 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.7 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-libraries-3</artifactId>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-boot-3</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-boot-3</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-jpa</artifactId>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.kafka</groupId>
 | |
|             <artifactId>spring-kafka</artifactId>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.postgresql</groupId>
 | |
|             <artifactId>postgresql</artifactId>
 | |
|             <version>${postgresql.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.modulith</groupId>
 | |
|             <artifactId>spring-modulith-events-api</artifactId>
 | |
|             <version>${spring-modulith-events-kafka.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.modulith</groupId>
 | |
|             <artifactId>spring-modulith-events-kafka</artifactId>
 | |
|             <version>${spring-modulith-events-kafka.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.modulith</groupId>
 | |
|             <artifactId>spring-modulith-starter-jpa</artifactId>
 | |
|             <version>${spring-modulith-events-kafka.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-testcontainers</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>kafka</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>testcontainers</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>junit-jupiter</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>postgresql</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.awaitility</groupId>
 | |
|             <artifactId>awaitility</artifactId>
 | |
|             <version>${awaitility.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
| 
 | |
|     <properties>
 | |
|         <java.version>17</java.version>
 | |
|         <spring-boot.version>3.1.5</spring-boot.version>
 | |
|         <spring-modulith-events-kafka.version>1.1.2</spring-modulith-events-kafka.version>
 | |
|         <testcontainers.version>1.19.3</testcontainers.version>
 | |
|         <awaitility.version>4.2.0</awaitility.version>
 | |
|         <postgresql.version>42.3.1</postgresql.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 | |
| 
 |