62 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.0 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>java-redpanda</artifactId>
 | |
|     <name>java-redpanda</name>
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>messaging-modules</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|     </parent>
 | |
|     <dependencies>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.kafka</groupId>
 | |
|             <artifactId>kafka-clients</artifactId>
 | |
|             <version>${kafka.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>junit-jupiter</artifactId>
 | |
|             <version>${testcontainers-jupiter.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>testcontainers</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>redpanda</artifactId>
 | |
|             <version>${redpanda.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
|     <dependencyManagement>
 | |
|         <dependencies>
 | |
|             <dependency>
 | |
|                 <groupId>org.testcontainers</groupId>
 | |
|                 <artifactId>testcontainers-bom</artifactId>
 | |
|                 <version>1.19.3</version>
 | |
|                 <type>pom</type>
 | |
|                 <scope>import</scope>
 | |
|             </dependency>
 | |
|         </dependencies>
 | |
|     </dependencyManagement>
 | |
| 
 | |
|     <properties>
 | |
|         <redpanda.version>1.19.4</redpanda.version>
 | |
|         <kafka.version>3.6.1</kafka.version>
 | |
|         <testcontainers-jupiter.version>1.15.3</testcontainers-jupiter.version>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |