|
10 | 10 | <name>QDox</name> |
11 | 11 | <groupId>com.thoughtworks.qdox</groupId> |
12 | 12 | <artifactId>qdox</artifactId> |
13 | | - <version>2.1.1-SNAPSHOT</version> |
| 13 | + <version>2.2.0-SNAPSHOT</version> |
14 | 14 |
|
15 | 15 | <url>https://github.com/paul-hammant/qdox</url> |
16 | 16 | <description> |
|
134 | 134 | <plugin> |
135 | 135 | <groupId>org.apache.maven.plugins</groupId> |
136 | 136 | <artifactId>maven-clean-plugin</artifactId> |
137 | | - <version>2.4.1</version> |
| 137 | + <version>3.4.0</version> |
138 | 138 | </plugin> |
139 | 139 | <plugin> |
140 | 140 | <groupId>org.apache.maven.plugins</groupId> |
141 | 141 | <artifactId>maven-compiler-plugin</artifactId> |
142 | | - <version>3.11.0</version> |
| 142 | + <version>3.13.0</version> |
143 | 143 | </plugin> |
144 | 144 | <plugin> |
145 | 145 | <groupId>org.apache.maven.plugins</groupId> |
146 | 146 | <artifactId>maven-surefire-plugin</artifactId> |
147 | | - <version>3.2.3</version> |
| 147 | + <version>3.5.2</version> |
148 | 148 | <configuration> |
149 | 149 | <reuseForks>false</reuseForks> |
150 | 150 | </configuration> |
151 | 151 | </plugin> |
152 | 152 | <plugin> |
153 | 153 | <groupId>org.apache.maven.plugins</groupId> |
154 | 154 | <artifactId>maven-jar-plugin</artifactId> |
155 | | - <version>3.3.0</version> |
156 | | - <configuration> |
157 | | - <archive> |
158 | | - <manifestEntries> |
159 | | - <Automatic-Module-Name>com.thoughtworks.qdox</Automatic-Module-Name> |
160 | | - </manifestEntries> |
161 | | - </archive> |
162 | | - </configuration> |
| 155 | + <version>3.4.2</version> |
163 | 156 | </plugin> |
164 | 157 | <plugin> |
165 | 158 | <groupId>org.apache.maven.plugins</groupId> |
166 | 159 | <artifactId>maven-install-plugin</artifactId> |
167 | | - <version>3.1.1</version> |
| 160 | + <version>3.1.3</version> |
168 | 161 | </plugin> |
169 | 162 | <plugin> |
170 | 163 | <groupId>org.apache.maven.plugins</groupId> |
171 | 164 | <artifactId>maven-deploy-plugin</artifactId> |
172 | | - <version>3.1.1</version> |
| 165 | + <version>3.1.3</version> |
173 | 166 | </plugin> |
174 | 167 | <plugin> |
175 | 168 | <groupId>org.apache.maven.plugins</groupId> |
176 | 169 | <artifactId>maven-site-plugin</artifactId> |
177 | | - <version>3.8.2</version> |
| 170 | + <version>3.21.0</version> |
178 | 171 | <configuration> |
179 | 172 | <templateFile>${basedir}/src/site/templates/site.vm</templateFile> |
180 | 173 | </configuration> |
181 | 174 | </plugin> |
182 | 175 | <plugin> |
183 | 176 | <groupId>org.apache.maven.plugins</groupId> |
184 | 177 | <artifactId>maven-release-plugin</artifactId> |
185 | | - <version>3.0.1</version> |
| 178 | + <version>3.1.1</version> |
186 | 179 | </plugin> |
187 | 180 | </plugins> |
188 | 181 | </pluginManagement> |
189 | 182 | <plugins> |
190 | 183 | <plugin> |
191 | 184 | <groupId>org.apache.maven.plugins</groupId> |
192 | 185 | <artifactId>maven-enforcer-plugin</artifactId> |
193 | | - <version>1.3.1</version> |
| 186 | + <version>3.5.0</version> |
194 | 187 | <executions> |
195 | 188 | <execution> |
196 | 189 | <id>enforce-maven</id> |
|
202 | 195 | <requireMavenVersion> |
203 | 196 | <version>3.0</version> |
204 | 197 | </requireMavenVersion> |
| 198 | + <requireJavaVersion> |
| 199 | + <version>11</version> |
| 200 | + </requireJavaVersion> |
205 | 201 | </rules> |
206 | 202 | </configuration> |
207 | 203 | </execution> |
|
221 | 217 | </execution> |
222 | 218 | </executions> |
223 | 219 | </plugin> |
| 220 | + <plugin> |
| 221 | + <groupId>org.apache.maven.plugins</groupId> |
| 222 | + <artifactId>maven-compiler-plugin</artifactId> |
| 223 | + <executions> |
| 224 | + <execution> |
| 225 | + <id>default-compile</id> |
| 226 | + <configuration> |
| 227 | + <release>8</release> |
| 228 | + <excludes> |
| 229 | + <exclude>module-info.java</exclude> |
| 230 | + </excludes> |
| 231 | + </configuration> |
| 232 | + </execution> |
| 233 | + <execution> |
| 234 | + <id>module-descriptor</id> |
| 235 | + <goals> |
| 236 | + <goal>compile</goal> |
| 237 | + </goals> |
| 238 | + <configuration> |
| 239 | + <release>11</release> |
| 240 | + <includes> |
| 241 | + <include>module-info.java</include> |
| 242 | + </includes> |
| 243 | + </configuration> |
| 244 | + </execution> |
| 245 | + </executions> |
| 246 | + </plugin> |
224 | 247 | <plugin> |
225 | 248 | <groupId>de.jflex</groupId> |
226 | 249 | <artifactId>jflex-maven-plugin</artifactId> |
227 | | - <version>1.8.2</version> |
| 250 | + <version>1.9.1</version> |
228 | 251 | <executions> |
229 | 252 | <execution> |
230 | 253 | <goals> |
|
243 | 266 | <plugin> |
244 | 267 | <groupId>org.codehaus.mojo</groupId> |
245 | 268 | <artifactId>exec-maven-plugin</artifactId> |
246 | | - <version>3.1.1</version> |
| 269 | + <version>3.5.0</version> |
247 | 270 | <executions> |
248 | 271 | <execution> |
249 | 272 | <id>javacommentparser</id> |
|
288 | 311 | </execution> |
289 | 312 | </executions> |
290 | 313 | </plugin> |
291 | | - <plugin> |
292 | | - <groupId>org.codehaus.mojo</groupId> |
293 | | - <artifactId>animal-sniffer-maven-plugin</artifactId> |
294 | | - <version>1.7</version> |
295 | | - <executions> |
296 | | - <execution> |
297 | | - <id>check-java15</id> |
298 | | - <phase>process-classes</phase> |
299 | | - <goals> |
300 | | - <goal>check</goal> |
301 | | - </goals> |
302 | | - <configuration> |
303 | | - <signature> |
304 | | - <groupId>org.codehaus.mojo.signature</groupId> |
305 | | - <artifactId>java18</artifactId> |
306 | | - <version>1.0</version> |
307 | | - </signature> |
308 | | - </configuration> |
309 | | - </execution> |
310 | | - </executions> |
311 | | - </plugin> |
312 | 314 | <plugin> |
313 | 315 | <groupId>org.apache.maven.plugins</groupId> |
314 | 316 | <artifactId>maven-failsafe-plugin</artifactId> |
315 | | - <version>2.22.1</version> |
| 317 | + <version>3.5.2</version> |
316 | 318 | <executions> |
317 | 319 | <execution> |
318 | 320 | <goals> |
|
325 | 327 | <plugin> |
326 | 328 | <groupId>org.apache.maven.plugins</groupId> |
327 | 329 | <artifactId>maven-invoker-plugin</artifactId> |
328 | | - <version>3.6.0</version> |
| 330 | + <version>3.8.1</version> |
329 | 331 | <configuration> |
330 | 332 | <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
331 | 333 | <postBuildHookScript>verify</postBuildHookScript> |
|
354 | 356 | <plugin> |
355 | 357 | <groupId>org.apache.maven.plugins</groupId> |
356 | 358 | <artifactId>maven-assembly-plugin</artifactId> |
357 | | - <version>3.6.0</version> |
| 359 | + <version>3.7.1</version> |
358 | 360 | <configuration> |
359 | 361 | <descriptorRefs> |
360 | 362 | <descriptorRef>project</descriptorRef> |
|
383 | 385 | <dependency> |
384 | 386 | <groupId>org.junit.jupiter</groupId> |
385 | 387 | <artifactId>junit-jupiter</artifactId> |
386 | | - <version>5.10.0</version> |
| 388 | + <version>5.11.3</version> |
387 | 389 | <scope>test</scope> |
388 | 390 | </dependency> |
389 | 391 | <dependency> |
390 | 392 | <groupId>org.assertj</groupId> |
391 | 393 | <artifactId>assertj-core</artifactId> |
392 | | - <version>3.11.1</version> |
| 394 | + <version>3.26.3</version> |
393 | 395 | <scope>test</scope> |
394 | 396 | </dependency> |
395 | 397 | <dependency> |
|
494 | 496 | <plugin> |
495 | 497 | <groupId>org.apache.maven.plugins</groupId> |
496 | 498 | <artifactId>maven-project-info-reports-plugin</artifactId> |
497 | | - <version>3.5.0</version> |
| 499 | + <version>3.8.0</version> |
498 | 500 | <reportSets> |
499 | 501 | <reportSet> |
500 | 502 | <reports> |
|
512 | 514 | <plugin> |
513 | 515 | <groupId>org.apache.maven.plugins</groupId> |
514 | 516 | <artifactId>maven-jxr-plugin</artifactId> |
515 | | - <version>2.3</version> |
| 517 | + <version>3.6.0</version> |
516 | 518 | <reportSets> |
517 | 519 | <reportSet> |
518 | 520 | <reports> |
|
529 | 531 | <plugin> |
530 | 532 | <groupId>org.apache.maven.plugins</groupId> |
531 | 533 | <artifactId>maven-javadoc-plugin</artifactId> |
532 | | - <version>3.6.3</version> |
| 534 | + <version>3.11.1</version> |
533 | 535 | <configuration> |
534 | 536 | <packagenames>com.thoughtworks.qdox.*</packagenames> |
535 | 537 | <tag name="noinspection" description="IntelliJ Inspection Ignore tag" enabled="false" /> |
|
0 commit comments