|
29 | 29 | <dependency> |
30 | 30 | <groupId>net.java.dev.javacc</groupId> |
31 | 31 | <artifactId>javacc</artifactId> |
32 | | - <version>7.0.13</version> |
| 32 | + <version>[7.0.13,)</version> |
33 | 33 | <scope>test</scope> |
34 | 34 | </dependency> |
35 | 35 |
|
36 | 36 | <dependency> |
37 | 37 | <groupId>commons-io</groupId> |
38 | 38 | <artifactId>commons-io</artifactId> |
39 | | - <version>2.11.0</version> |
| 39 | + <version>[2.15.1,)</version> |
40 | 40 | <scope>test</scope> |
41 | 41 | </dependency> |
42 | 42 | <dependency> |
43 | 43 | <groupId>org.junit.jupiter</groupId> |
44 | 44 | <artifactId>junit-jupiter</artifactId> |
45 | | - <version>5.9.2</version> |
| 45 | + <version>[5.10.2,)</version> |
46 | 46 | <scope>test</scope> |
47 | 47 | </dependency> |
48 | 48 | <dependency> |
49 | 49 | <groupId>org.mockito</groupId> |
50 | 50 | <artifactId>mockito-core</artifactId> |
51 | | - <version>4.8.0</version> |
| 51 | + <version>[5.11.0,)</version> |
52 | 52 | <scope>test</scope> |
53 | 53 | </dependency> |
54 | 54 | <dependency> |
55 | 55 | <groupId>org.mockito</groupId> |
56 | 56 | <artifactId>mockito-junit-jupiter</artifactId> |
57 | | - <version>4.8.0</version> |
| 57 | + <version>[5.11.0,)</version> |
58 | 58 | <scope>test</scope> |
59 | 59 | </dependency> |
60 | 60 | <dependency> |
61 | 61 | <groupId>org.assertj</groupId> |
62 | 62 | <artifactId>assertj-core</artifactId> |
63 | | - <version>3.23.1</version> |
| 63 | + <version>[3.25.3,)</version> |
64 | 64 | <scope>test</scope> |
65 | 65 | </dependency> |
66 | 66 | <dependency> |
67 | 67 | <groupId>org.apache.commons</groupId> |
68 | 68 | <artifactId>commons-lang3</artifactId> |
69 | | - <version>3.12.0</version> |
| 69 | + <version>[3.14.0,)</version> |
70 | 70 | <scope>test</scope> |
71 | 71 | </dependency> |
72 | 72 | <dependency> |
73 | 73 | <groupId>com.h2database</groupId> |
74 | 74 | <artifactId>h2</artifactId> |
75 | | - <version>2.1.214</version> |
| 75 | + <version>[2.2.224,)</version> |
76 | 76 | <scope>test</scope> |
77 | 77 | </dependency> |
78 | 78 |
|
|
133 | 133 | <plugin> |
134 | 134 | <groupId>org.apache.maven.plugins</groupId> |
135 | 135 | <artifactId>maven-pmd-plugin</artifactId> |
136 | | - <version>3.19.0</version> |
| 136 | + <version>3.21.2</version> |
137 | 137 | <configuration> |
138 | 138 | <rulesets> |
139 | 139 | <!-- Custom local file system rule set --> |
|
205 | 205 | <artifactId>maven-compiler-plugin</artifactId> |
206 | 206 | <version>3.10.1</version> |
207 | 207 | <configuration> |
208 | | - <source>1.8</source> |
209 | | - <target>1.8</target> |
| 208 | + <source>11</source> |
| 209 | + <target>11</target> |
210 | 210 | <showWarnings>true</showWarnings> |
211 | 211 | <encoding>${project.build.sourceEncoding}</encoding> |
212 | 212 | <showDeprecation>true</showDeprecation> |
|
335 | 335 | <plugin> |
336 | 336 | <groupId>org.apache.maven.plugins</groupId> |
337 | 337 | <artifactId>maven-jar-plugin</artifactId> |
| 338 | + <version>3.3.0</version> |
338 | 339 | <configuration> |
339 | 340 | <archive> |
340 | 341 | <manifestEntries> |
|
543 | 544 | <property> |
544 | 545 | <name>!skipCheckSources</name> |
545 | 546 | </property> |
546 | | - <jdk>[1.8,)</jdk> |
| 547 | + <jdk>[11,)</jdk> |
547 | 548 | </activation> |
548 | 549 | <build> |
549 | 550 | <plugins> |
550 | 551 | <plugin> |
551 | 552 | <groupId>org.apache.maven.plugins</groupId> |
552 | 553 | <artifactId>maven-checkstyle-plugin</artifactId> |
553 | | - <version>3.1.0</version> |
| 554 | + <version>3.3.1</version> |
554 | 555 | <executions> |
555 | 556 | <execution> |
556 | 557 | <id>verify-style</id> |
|
602 | 603 | <dependency> |
603 | 604 | <groupId>com.puppycrawl.tools</groupId> |
604 | 605 | <artifactId>checkstyle</artifactId> |
605 | | - <version>8.29</version> |
| 606 | + <version>${checkStyleVersion}</version> |
606 | 607 | </dependency> |
607 | 608 | </dependencies> |
608 | 609 | </plugin> |
|
626 | 627 |
|
627 | 628 | <properties> |
628 | 629 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
629 | | - <pmdVersion>6.53.0</pmdVersion> |
| 630 | + <pmdVersion>6.55.0</pmdVersion> |
| 631 | + <checkStyleVersion>10.14.0</checkStyleVersion> |
630 | 632 | </properties> |
631 | 633 |
|
632 | 634 | <description>JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes. |
|
0 commit comments