|
9 | 9 | <plugins>
|
10 | 10 | <plugin>
|
11 | 11 | <artifactId>maven-shade-plugin</artifactId>
|
12 |
| - <version>3.1.0</version> |
| 12 | + <version>3.4.1</version> |
13 | 13 | <executions>
|
14 | 14 | <execution>
|
15 | 15 | <phase>package</phase>
|
|
29 | 29 | </plugin>
|
30 | 30 | <plugin>
|
31 | 31 | <artifactId>maven-compiler-plugin</artifactId>
|
32 |
| - <version>3.7.0</version> |
| 32 | + <version>3.11.0</version> |
33 | 33 | <configuration>
|
34 | 34 | <source>${java.version}</source>
|
35 | 35 | <target>${java.version}</target>
|
|
40 | 40 | </plugin>
|
41 | 41 | <plugin>
|
42 | 42 | <artifactId>maven-checkstyle-plugin</artifactId>
|
43 |
| - <version>2.17</version> |
| 43 | + <version>3.2.1</version> |
44 | 44 | <executions>
|
45 | 45 | <execution>
|
46 | 46 | <id>validate</id>
|
|
57 | 57 | <plugin>
|
58 | 58 | <groupId>org.jacoco</groupId>
|
59 | 59 | <artifactId>jacoco-maven-plugin</artifactId>
|
60 |
| - <version>0.8.6</version> |
| 60 | + <version>0.8.9</version> |
61 | 61 | <executions>
|
62 | 62 | <execution>
|
63 | 63 | <id>pre-unit-test</id>
|
|
89 | 89 | </plugin>
|
90 | 90 | <plugin>
|
91 | 91 | <artifactId>maven-surefire-plugin</artifactId>
|
92 |
| - <version>2.22.2</version> |
| 92 | + <version>3.0.0</version> |
93 | 93 | <configuration>
|
94 | 94 | <argLine>${surefireArgLine}</argLine>
|
95 | 95 | <skipTests>${skip.unit.tests}</skipTests>
|
|
107 | 107 | </plugin>
|
108 | 108 | </plugins>
|
109 | 109 | </build>
|
| 110 | + <repositories> |
| 111 | + <repository> |
| 112 | + <id>confluent</id> |
| 113 | + <url>https://packages.confluent.io/maven/</url> |
| 114 | + </repository> |
| 115 | + </repositories> |
110 | 116 | <dependencies>
|
111 | 117 | <dependency>
|
112 | 118 | <groupId>org.junit.jupiter</groupId>
|
113 | 119 | <artifactId>junit-jupiter-api</artifactId>
|
114 |
| - <version>5.3.2</version> |
| 120 | + <version>5.9.2</version> |
115 | 121 | <scope>test</scope>
|
116 | 122 | <exclusions>
|
117 | 123 | <exclusion>
|
|
139 | 145 | <dependency>
|
140 | 146 | <groupId>org.junit.platform</groupId>
|
141 | 147 | <artifactId>junit-platform-launcher</artifactId>
|
142 |
| - <version>1.3.2</version> |
| 148 | + <version>1.9.2</version> |
143 | 149 | <scope>test</scope>
|
144 | 150 | <exclusions>
|
145 | 151 | <exclusion>
|
|
151 | 157 | <dependency>
|
152 | 158 | <groupId>org.junit.jupiter</groupId>
|
153 | 159 | <artifactId>junit-jupiter-engine</artifactId>
|
154 |
| - <version>5.3.2</version> |
| 160 | + <version>5.9.2</version> |
155 | 161 | <scope>test</scope>
|
156 | 162 | <exclusions>
|
157 | 163 | <exclusion>
|
|
163 | 169 | <dependency>
|
164 | 170 | <groupId>org.junit.vintage</groupId>
|
165 | 171 | <artifactId>junit-vintage-engine</artifactId>
|
166 |
| - <version>5.3.2</version> |
| 172 | + <version>5.9.2</version> |
167 | 173 | <scope>test</scope>
|
168 | 174 | <exclusions>
|
169 | 175 | <exclusion>
|
|
175 | 181 | <dependency>
|
176 | 182 | <groupId>org.slf4j</groupId>
|
177 | 183 | <artifactId>slf4j-simple</artifactId>
|
178 |
| - <version>1.7.26</version> |
| 184 | + <version>2.0.7</version> |
179 | 185 | <scope>test</scope>
|
180 | 186 | </dependency>
|
181 | 187 | <dependency>
|
182 | 188 | <groupId>org.apiguardian</groupId>
|
183 | 189 | <artifactId>apiguardian-api</artifactId>
|
184 |
| - <version>1.0.0</version> |
| 190 | + <version>1.1.2</version> |
185 | 191 | <scope>test</scope>
|
186 | 192 | </dependency>
|
187 | 193 | </dependencies>
|
188 | 194 | <reporting>
|
189 | 195 | <plugins>
|
190 | 196 | <plugin>
|
191 | 197 | <artifactId>maven-jxr-plugin</artifactId>
|
192 |
| - <version>2.3</version> |
| 198 | + <version>3.3.0</version> |
193 | 199 | </plugin>
|
194 | 200 | </plugins>
|
195 | 201 | </reporting>
|
196 | 202 | <properties>
|
197 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
198 |
| - <java.version>1.8</java.version> |
199 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
| 203 | + <jackson.version>2.14.2</jackson.version> |
| 204 | + <junit.platform.version>1.9.2</junit.platform.version> |
| 205 | + <slf4j.version>2.0.7</slf4j.version> |
200 | 206 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
201 | 207 | <junit.version>4.13.2</junit.version>
|
202 |
| - <junit.jupiter.version>5.3.2</junit.jupiter.version> |
203 |
| - <junit.vintage.version>5.3.2</junit.vintage.version> |
204 |
| - <junit.platform.version>1.3.2</junit.platform.version> |
| 208 | + <junit.vintage.version>5.9.2</junit.vintage.version> |
| 209 | + <java.version>1.8</java.version> |
| 210 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 211 | + <junit.jupiter.version>5.9.2</junit.jupiter.version> |
| 212 | + <kafka.version>3.4.0</kafka.version> |
| 213 | + <maven.compiler.target>1.8</maven.compiler.target> |
205 | 214 | </properties>
|
206 | 215 | </project>
|
0 commit comments