|
9 | 9 | <plugins> |
10 | 10 | <plugin> |
11 | 11 | <artifactId>maven-shade-plugin</artifactId> |
12 | | - <version>3.4.1</version> |
| 12 | + <version>3.1.0</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.11.0</version> |
| 32 | + <version>3.7.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>3.2.1</version> |
| 43 | + <version>2.17</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.9</version> |
| 60 | + <version>0.8.6</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>3.0.0</version> |
| 92 | + <version>2.22.2</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> |
116 | 110 | <dependencies> |
117 | 111 | <dependency> |
118 | 112 | <groupId>org.junit.jupiter</groupId> |
119 | 113 | <artifactId>junit-jupiter-api</artifactId> |
120 | | - <version>5.9.2</version> |
| 114 | + <version>5.3.2</version> |
121 | 115 | <scope>test</scope> |
122 | 116 | <exclusions> |
123 | 117 | <exclusion> |
|
145 | 139 | <dependency> |
146 | 140 | <groupId>org.junit.platform</groupId> |
147 | 141 | <artifactId>junit-platform-launcher</artifactId> |
148 | | - <version>1.9.2</version> |
| 142 | + <version>1.3.2</version> |
149 | 143 | <scope>test</scope> |
150 | 144 | <exclusions> |
151 | 145 | <exclusion> |
|
157 | 151 | <dependency> |
158 | 152 | <groupId>org.junit.jupiter</groupId> |
159 | 153 | <artifactId>junit-jupiter-engine</artifactId> |
160 | | - <version>5.9.2</version> |
| 154 | + <version>5.3.2</version> |
161 | 155 | <scope>test</scope> |
162 | 156 | <exclusions> |
163 | 157 | <exclusion> |
|
169 | 163 | <dependency> |
170 | 164 | <groupId>org.junit.vintage</groupId> |
171 | 165 | <artifactId>junit-vintage-engine</artifactId> |
172 | | - <version>5.9.2</version> |
| 166 | + <version>5.3.2</version> |
173 | 167 | <scope>test</scope> |
174 | 168 | <exclusions> |
175 | 169 | <exclusion> |
|
181 | 175 | <dependency> |
182 | 176 | <groupId>org.slf4j</groupId> |
183 | 177 | <artifactId>slf4j-simple</artifactId> |
184 | | - <version>2.0.7</version> |
| 178 | + <version>1.7.26</version> |
185 | 179 | <scope>test</scope> |
186 | 180 | </dependency> |
187 | 181 | <dependency> |
188 | 182 | <groupId>org.apiguardian</groupId> |
189 | 183 | <artifactId>apiguardian-api</artifactId> |
190 | | - <version>1.1.2</version> |
| 184 | + <version>1.0.0</version> |
191 | 185 | <scope>test</scope> |
192 | 186 | </dependency> |
193 | 187 | </dependencies> |
194 | 188 | <reporting> |
195 | 189 | <plugins> |
196 | 190 | <plugin> |
197 | 191 | <artifactId>maven-jxr-plugin</artifactId> |
198 | | - <version>3.3.0</version> |
| 192 | + <version>2.3</version> |
199 | 193 | </plugin> |
200 | 194 | </plugins> |
201 | 195 | </reporting> |
202 | 196 | <properties> |
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> |
206 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
207 | | - <junit.version>4.13.2</junit.version> |
208 | | - <junit.vintage.version>5.9.2</junit.vintage.version> |
| 197 | + <maven.compiler.target>1.8</maven.compiler.target> |
209 | 198 | <java.version>1.8</java.version> |
210 | 199 | <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> |
| 200 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 201 | + <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> |
214 | 205 | </properties> |
215 | 206 | </project> |
0 commit comments