|
131 | 131 | <plugin>
|
132 | 132 | <groupId>org.apache.maven.plugins</groupId>
|
133 | 133 | <artifactId>maven-pmd-plugin</artifactId>
|
134 |
| - <version>3.14.0</version> |
| 134 | + <version>3.19.0</version> |
135 | 135 | <configuration>
|
136 | 136 | <rulesets>
|
137 | 137 | <!-- Custom local file system rule set -->
|
|
218 | 218 | <dependency>
|
219 | 219 | <groupId>net.java.dev.javacc</groupId>
|
220 | 220 | <artifactId>javacc</artifactId>
|
221 |
| - <version>7.0.11</version> |
| 221 | + <version>7.0.12</version> |
222 | 222 | </dependency>
|
223 | 223 | </dependencies>
|
224 | 224 | </plugin>
|
|
418 | 418 | <version>3.3.0</version>
|
419 | 419 | </plugin>
|
420 | 420 |
|
421 |
| - <!-- Cobertura is broken with Java 1.8 and there is not fix |
422 |
| - please refer to https://github.com/cobertura/cobertura/issues/248 |
423 |
| - |
424 |
| - <plugin> |
425 |
| - <groupId>org.codehaus.mojo</groupId> |
426 |
| - <artifactId>cobertura-maven-plugin</artifactId> |
427 |
| - <version>2.7</version> |
428 |
| - <configuration> |
429 |
| - <aggregate>true</aggregate> |
430 |
| - <outputDirectory>${project.reporting.outputDirectory}/cobertura</outputDirectory> |
431 |
| - </configuration> |
432 |
| - </plugin> |
433 |
| - --> |
434 |
| - |
435 | 421 | <plugin>
|
436 | 422 | <groupId>org.codehaus.mojo</groupId>
|
437 | 423 | <artifactId>findbugs-maven-plugin</artifactId>
|
438 | 424 | <version>3.0.5</version>
|
439 | 425 | </plugin>
|
440 |
| - |
441 |
| - <!-- Obsolete or Unused |
442 |
| - <plugin> |
443 |
| - <groupId>org.apache.maven.plugins</groupId> |
444 |
| - <artifactId>maven-checkstyle-plugin</artifactId> |
445 |
| - <configuration> |
446 |
| - <configLocation>config/sun_checks.xml</configLocation> |
447 |
| - </configuration> |
448 |
| - </plugin> |
449 |
| - --> |
450 |
| - |
451 |
| - <!-- JJDoc report generating the BNF documentation --> |
452 |
| - <plugin> |
453 |
| - <groupId>org.javacc.plugin</groupId> |
454 |
| - <artifactId>javacc-maven-plugin</artifactId> |
455 |
| - <version>3.0.3</version> |
456 |
| - <configuration> |
457 |
| - <!-- |
458 |
| - /** |
459 |
| - * A flag to specify the output format for the generated documentation. If set to <code>true</code>, JJDoc will |
460 |
| - * generate a plain text description of the BNF. Some formatting is done via tab characters, but the intention is to |
461 |
| - * leave it as plain as possible. Specifying <code>false</code> causes JJDoc to generate a hyperlinked HTML document |
462 |
| - * unless the parameter {@link #bnf} has been set to <code>true</code>. Default value is <code>false</code>. |
463 |
| - * |
464 |
| - * @parameter expression="${text}" |
465 |
| - */ |
466 |
| - --> |
467 |
| - <text>false</text> |
468 |
| - |
469 |
| - <!-- |
470 |
| - /** |
471 |
| - * A flag whether to generate a plain text document with the unformatted BNF. Note that setting this option to |
472 |
| - * <code>true</code> is only effective if the parameter {@link #text} is <code>false</code>. Default value is |
473 |
| - * <code>false</code>. |
474 |
| - * |
475 |
| - * @parameter expression="${bnf}" |
476 |
| - * @since 2.6 |
477 |
| - */ |
478 |
| - --> |
479 |
| - <bnf>false</bnf> |
480 |
| - |
481 |
| - <!-- |
482 |
| - /** |
483 |
| - * This option controls the structure of the generated HTML output. If set to <code>true</code>, a single HTML |
484 |
| - * table for the entire BNF is generated. Setting it to <code>false</code> will produce one table for every |
485 |
| - * production in the grammar. |
486 |
| - * |
487 |
| - * @parameter expression="${oneTable}" default-value=true |
488 |
| - */ |
489 |
| - --> |
490 |
| - <oneTable>false</oneTable> |
491 |
| - |
492 |
| - <!-- |
493 |
| - /** |
494 |
| - * The hypertext reference to an optional CSS file for the generated HTML documents. If specified, this CSS file |
495 |
| - * will be included via a <code><link></code> element in the HTML documents. Otherwise, the default style will |
496 |
| - * be used. |
497 |
| - * |
498 |
| - * @parameter expression="${cssHref}" |
499 |
| - * @since 2.5 |
500 |
| - */ |
501 |
| - --> |
502 |
| - <!-- <cssHref></cssHref> --> |
503 |
| - |
504 |
| - <outputDirectory>${project.reporting.outputDirectory}</outputDirectory> |
505 |
| - </configuration> |
506 |
| - </plugin> |
507 | 426 | </plugins>
|
508 | 427 | </reporting>
|
509 | 428 |
|
|
628 | 547 |
|
629 | 548 | <properties>
|
630 | 549 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
631 |
| - <pmdVersion>6.46.0</pmdVersion> |
| 550 | + <pmdVersion>6.53.0</pmdVersion> |
632 | 551 | </properties>
|
633 | 552 |
|
634 | 553 | <description>JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
|
|
0 commit comments