|
6 | 6 | <groupId>backend.academy</groupId> |
7 | 7 | <artifactId>root</artifactId> |
8 | 8 | <version>${revision}</version> |
| 9 | + |
9 | 10 | </parent> |
10 | 11 |
|
11 | 12 | <artifactId>bot</artifactId> |
|
43 | 44 | <artifactId>spring-boot-starter-data-redis</artifactId> |
44 | 45 | </dependency> |
45 | 46 |
|
46 | | - <!-- Kafka --> |
47 | | - <!-- <dependency>--> |
48 | | - <!-- <groupId>org.springframework.kafka</groupId>--> |
49 | | - <!-- <artifactId>spring-kafka</artifactId>--> |
50 | | - <!-- </dependency>--> |
| 47 | + <!-- Kafka--> |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework.kafka</groupId> |
| 50 | + <artifactId>spring-kafka</artifactId> |
| 51 | + </dependency> |
51 | 52 |
|
52 | 53 | <!-- Actuator --> |
53 | 54 | <dependency> |
|
87 | 88 | <artifactId>spring-boot-starter-test</artifactId> |
88 | 89 | <scope>test</scope> |
89 | 90 | </dependency> |
| 91 | + |
90 | 92 | <dependency> |
91 | 93 | <groupId>io.projectreactor</groupId> |
92 | 94 | <artifactId>reactor-test</artifactId> |
|
112 | 114 | <artifactId>kafka</artifactId> |
113 | 115 | <scope>test</scope> |
114 | 116 | </dependency> |
115 | | - <!-- <dependency>--> |
116 | | - <!-- <groupId>org.springframework.kafka</groupId>--> |
117 | | - <!-- <artifactId>spring-kafka-test</artifactId>--> |
118 | | - <!-- <scope>test</scope>--> |
119 | | - <!-- </dependency>--> |
| 117 | + <dependency> |
| 118 | + <groupId>org.springframework.kafka</groupId> |
| 119 | + <artifactId>spring-kafka-test</artifactId> |
| 120 | + <scope>test</scope> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>org.glassfish.jaxb</groupId> |
| 124 | + <artifactId>jaxb-runtime</artifactId> |
| 125 | + <scope>test</scope> |
| 126 | + </dependency> |
| 127 | + |
| 128 | + <dependency> |
| 129 | + <groupId>commons-io</groupId> |
| 130 | + <artifactId>commons-io</artifactId> |
| 131 | + <version>2.16.1</version> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>io.github.resilience4j</groupId> |
| 135 | + <artifactId>resilience4j-spring-boot3</artifactId> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>io.github.resilience4j</groupId> |
| 139 | + <artifactId>resilience4j-reactor</artifactId> |
| 140 | + </dependency> |
| 141 | + |
| 142 | + <dependency> |
| 143 | + <groupId>org.springframework.retry</groupId> |
| 144 | + <artifactId>spring-retry</artifactId> |
| 145 | + </dependency> |
| 146 | + |
| 147 | + <dependency> |
| 148 | + <groupId>org.aspectj</groupId> |
| 149 | + <artifactId>aspectjweaver</artifactId> |
| 150 | + <version>1.9.20.1</version> |
| 151 | + </dependency> |
| 152 | + |
| 153 | + <dependency> |
| 154 | + <groupId>com.bucket4j</groupId> |
| 155 | + <artifactId>bucket4j-core</artifactId> |
| 156 | + <version>8.7.0</version> |
| 157 | + </dependency> |
| 158 | + |
| 159 | + <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-contract-wiremock --> |
| 160 | + <dependency> |
| 161 | + <groupId>org.springframework.cloud</groupId> |
| 162 | + <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 163 | + <version>4.2.1</version> |
| 164 | + </dependency> |
| 165 | + |
120 | 166 | </dependencies> |
121 | 167 |
|
122 | 168 | <build> |
|
125 | 171 | <groupId>org.apache.maven.plugins</groupId> |
126 | 172 | <artifactId>maven-compiler-plugin</artifactId> |
127 | 173 | </plugin> |
128 | | - <!-- To build OCI image: https://docs.spring.io/spring-boot/maven-plugin/build-image.html --> |
129 | 174 | <plugin> |
130 | 175 | <groupId>org.springframework.boot</groupId> |
131 | 176 | <artifactId>spring-boot-maven-plugin</artifactId> |
|
0 commit comments