|
54 | 54 | <scope>runtime</scope> |
55 | 55 | </dependency> |
56 | 56 |
|
| 57 | + <dependency> |
| 58 | + <groupId>org.projectlombok</groupId> |
| 59 | + <artifactId>lombok</artifactId> |
| 60 | + <optional>true</optional> |
| 61 | + </dependency> |
| 62 | + |
| 63 | + <dependency> |
| 64 | + <groupId>org.springdoc</groupId> |
| 65 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 66 | + <version>${springdoc.version}</version> |
| 67 | + </dependency> |
| 68 | + |
57 | 69 | <dependency> |
58 | 70 | <groupId>org.springframework.boot</groupId> |
59 | 71 | <artifactId>spring-boot-starter-test</artifactId> |
|
67 | 79 | </dependency> |
68 | 80 |
|
69 | 81 | <dependency> |
70 | | - <groupId>org.projectlombok</groupId> |
71 | | - <artifactId>lombok</artifactId> |
72 | | - <version>${lombok.version}</version> |
73 | | - <scope>provided</scope> |
74 | | - </dependency> |
75 | | - |
76 | | - <dependency> |
77 | | - <groupId>com.h2database</groupId> |
78 | | - <artifactId>h2</artifactId> |
79 | | - <scope>runtime</scope> |
| 82 | + <groupId>org.testcontainers</groupId> |
| 83 | + <artifactId>postgresql</artifactId> |
| 84 | + <version>${testcontainers.version}</version> |
| 85 | + <scope>test</scope> |
80 | 86 | </dependency> |
81 | 87 |
|
82 | 88 | <dependency> |
83 | | - <groupId>org.springdoc</groupId> |
84 | | - <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
85 | | - <version>${springdoc.version}</version> |
| 89 | + <groupId>org.testcontainers</groupId> |
| 90 | + <artifactId>kafka</artifactId> |
| 91 | + <version>${testcontainers.version}</version> |
| 92 | + <scope>test</scope> |
86 | 93 | </dependency> |
87 | 94 |
|
88 | 95 | <dependency> |
89 | | - <groupId>org.springframework.boot</groupId> |
90 | | - <artifactId>spring-boot-starter-actuator</artifactId> |
| 96 | + <groupId>org.testcontainers</groupId> |
| 97 | + <artifactId>testcontainers</artifactId> |
| 98 | + <version>${testcontainers.version}</version> |
| 99 | + <scope>test</scope> |
91 | 100 | </dependency> |
92 | 101 |
|
93 | 102 | <dependency> |
94 | | - <groupId>org.springframework.boot</groupId> |
95 | | - <artifactId>spring-boot-starter-validation</artifactId> |
| 103 | + <groupId>org.testcontainers</groupId> |
| 104 | + <artifactId>junit-jupiter</artifactId> |
| 105 | + <version>${testcontainers.version}</version> |
| 106 | + <scope>test</scope> |
96 | 107 | </dependency> |
97 | | - |
| 108 | + |
98 | 109 | <dependency> |
99 | | - <groupId>org.projectlombok</groupId> |
100 | | - <artifactId>lombok</artifactId> |
101 | | - <optional>true</optional> |
| 110 | + <groupId>com.h2database</groupId> |
| 111 | + <artifactId>h2</artifactId> |
| 112 | + <scope>test</scope> |
102 | 113 | </dependency> |
103 | 114 | </dependencies> |
104 | 115 |
|
|
0 commit comments