|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 | 3 | <groupId>com.github.jsqlparser</groupId>
|
4 | 4 | <artifactId>jsqlparser</artifactId>
|
5 |
| - <version>5.2-SNAPSHOT</version> |
| 5 | + <version>5.3-SNAPSHOT</version> |
6 | 6 | <name>JSQLParser library</name>
|
7 | 7 | <inceptionYear>2004</inceptionYear>
|
8 | 8 | <organization>
|
|
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 | <dependency>
|
|
59 | 59 | <dependency>
|
60 | 60 | <groupId>org.assertj</groupId>
|
61 | 61 | <artifactId>assertj-core</artifactId>
|
62 |
| - <version>[3.25.3,)</version> |
| 62 | + <version>3.27.3</version> |
63 | 63 | <scope>test</scope>
|
64 | 64 | </dependency>
|
65 | 65 | <dependency>
|
66 | 66 | <groupId>org.apache.commons</groupId>
|
67 | 67 | <artifactId>commons-lang3</artifactId>
|
68 |
| - <version>[3.14.0,)</version> |
| 68 | + <version>3.17.0</version> |
69 | 69 | <scope>test</scope>
|
70 | 70 | </dependency>
|
71 | 71 | <dependency>
|
|
173 | 173 | <plugin>
|
174 | 174 | <groupId>org.codehaus.mojo</groupId>
|
175 | 175 | <artifactId>build-helper-maven-plugin</artifactId>
|
176 |
| - <version>3.2.0</version> |
| 176 | + <version>3.6.0</version> |
177 | 177 | <executions>
|
178 | 178 | <execution>
|
179 | 179 | <id>add-source</id>
|
|
192 | 192 | </plugin>
|
193 | 193 | <plugin>
|
194 | 194 | <artifactId>maven-compiler-plugin</artifactId>
|
195 |
| - <version>3.10.1</version> |
| 195 | + <version>3.14.0</version> |
196 | 196 | <configuration>
|
197 | 197 | <source>11</source>
|
198 | 198 | <target>11</target>
|
199 | 199 | <showWarnings>true</showWarnings>
|
200 | 200 | <encoding>${project.build.sourceEncoding}</encoding>
|
201 | 201 | <showDeprecation>true</showDeprecation>
|
202 |
| - <fork>true</fork> |
203 |
| - <meminitial>128m</meminitial> |
204 | 202 | <maxmem>2000m</maxmem>
|
| 203 | + <compilerArgs> |
| 204 | + <arg>-J-Xss4M</arg> |
| 205 | + </compilerArgs> |
| 206 | + <fork>true</fork> |
205 | 207 | </configuration>
|
206 | 208 | </plugin>
|
207 | 209 | <plugin>
|
|
226 | 228 | <dependency>
|
227 | 229 | <groupId>net.java.dev.javacc</groupId>
|
228 | 230 | <artifactId>javacc</artifactId>
|
229 |
| - <version>[7.0.13,)</version> |
| 231 | + <version>[7.0.13,8)</version> |
230 | 232 | </dependency>
|
231 | 233 | </dependencies>
|
232 | 234 | </plugin>
|
|
304 | 306 | <plugin>
|
305 | 307 | <groupId>org.apache.maven.plugins</groupId>
|
306 | 308 | <artifactId>maven-javadoc-plugin</artifactId>
|
307 |
| - <version>3.4.1</version> |
| 309 | + <version>3.11.2</version> |
308 | 310 | <executions>
|
309 | 311 | <execution>
|
310 | 312 | <id>attach-javadocs</id>
|
|
326 | 328 | <plugin>
|
327 | 329 | <groupId>org.apache.maven.plugins</groupId>
|
328 | 330 | <artifactId>maven-jar-plugin</artifactId>
|
329 |
| - <version>3.3.0</version> |
| 331 | + <version>3.4.2</version> |
330 | 332 | <configuration>
|
331 | 333 | <archive>
|
332 | 334 | <manifestEntries>
|
|
349 | 351 | <plugin>
|
350 | 352 | <groupId>org.apache.maven.plugins</groupId>
|
351 | 353 | <artifactId>maven-surefire-plugin</artifactId>
|
352 |
| - <version>3.2.5</version> |
| 354 | + <version>3.5.2</version> |
353 | 355 | <configuration>
|
354 | 356 | <trimStackTrace>false</trimStackTrace>
|
355 | 357 | <!-- AlterViewTest does deep reflection -->
|
|
364 | 366 | <plugin>
|
365 | 367 | <groupId>org.jacoco</groupId>
|
366 | 368 | <artifactId>jacoco-maven-plugin</artifactId>
|
367 |
| - <version>0.8.10</version> |
| 369 | + <version>0.8.11</version> |
368 | 370 | <executions>
|
369 | 371 | <execution>
|
370 | 372 | <goals>
|
|
383 | 385 | <plugin>
|
384 | 386 | <groupId>com.diffplug.spotless</groupId>
|
385 | 387 | <artifactId>spotless-maven-plugin</artifactId>
|
386 |
| - <version>2.28.0</version> |
| 388 | + <version>2.43.0</version> |
387 | 389 | <configuration>
|
388 | 390 | <!-- optional: limit format enforcement to just the files changed by this feature branch -->
|
389 | 391 | <ratchetFrom>origin/master</ratchetFrom>
|
|
0 commit comments