diff --git a/pom.xml b/pom.xml index d1dedfe..3c5f6c9 100644 --- a/pom.xml +++ b/pom.xml @@ -16,9 +16,43 @@ <properties> <java.version>17</java.version> </properties> - <dependencies> - </dependencies> - + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + <version>3.2.5</version> +</dependency> +<dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>3.2.5</version> +</dependency> +<dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka</artifactId> + <version>3.1.4</version> +</dependency> +<dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <version>2.2.224</version> +</dependency> +<dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <version>3.2.5</version> + <scope>test</scope> +</dependency> +<dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka-test</artifactId> + <version>3.1.4</version> + <scope>test</scope> +</dependency> +<dependency> + <groupId>org.testcontainers</groupId> + <artifactId>kafka</artifactId> + <version>1.19.1</version> +</dependency> <build> <plugins> <plugin>