|
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.4-SNAPSHOT</version> |
6 | 6 | <name>JSQLParser library</name> |
7 | 7 | <inceptionYear>2004</inceptionYear> |
8 | 8 | <organization> |
|
71 | 71 | <dependency> |
72 | 72 | <groupId>org.apache.commons</groupId> |
73 | 73 | <artifactId>commons-lang3</artifactId> |
74 | | - <version>[3.14.0,)</version> |
| 74 | + <version>3.17.0</version> |
75 | 75 | <scope>test</scope> |
76 | 76 | </dependency> |
77 | 77 | <dependency> |
|
88 | 88 | <version>1.3</version> |
89 | 89 | <scope>test</scope> |
90 | 90 | </dependency> |
| 91 | + |
| 92 | + <!-- JMH core API --> |
| 93 | + <dependency> |
| 94 | + <groupId>org.openjdk.jmh</groupId> |
| 95 | + <artifactId>jmh-core</artifactId> |
| 96 | + <version>1.37</version> |
| 97 | + </dependency> |
| 98 | + |
| 99 | + <!-- JMH annotation processor --> |
| 100 | + <dependency> |
| 101 | + <groupId>org.openjdk.jmh</groupId> |
| 102 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 103 | + <version>1.37</version> |
| 104 | + <scope>provided</scope> |
| 105 | + </dependency> |
| 106 | + |
91 | 107 | </dependencies> |
92 | 108 |
|
93 | 109 | <developers> |
|
179 | 195 | <plugin> |
180 | 196 | <groupId>org.codehaus.mojo</groupId> |
181 | 197 | <artifactId>build-helper-maven-plugin</artifactId> |
182 | | - <version>3.2.0</version> |
| 198 | + <version>3.6.0</version> |
183 | 199 | <executions> |
184 | 200 | <execution> |
185 | 201 | <id>add-source</id> |
|
198 | 214 | </plugin> |
199 | 215 | <plugin> |
200 | 216 | <artifactId>maven-compiler-plugin</artifactId> |
201 | | - <version>3.10.1</version> |
| 217 | + <version>3.14.0</version> |
202 | 218 | <configuration> |
203 | 219 | <source>11</source> |
204 | 220 | <target>11</target> |
205 | 221 | <showWarnings>true</showWarnings> |
206 | 222 | <encoding>${project.build.sourceEncoding}</encoding> |
207 | 223 | <showDeprecation>true</showDeprecation> |
208 | | - <fork>true</fork> |
209 | | - <meminitial>128m</meminitial> |
210 | 224 | <maxmem>2000m</maxmem> |
| 225 | + <compilerArgs> |
| 226 | + <arg>-J-Xss4M</arg> |
| 227 | + </compilerArgs> |
| 228 | + <fork>true</fork> |
| 229 | + <annotationProcessorPaths> |
| 230 | + <path> |
| 231 | + <groupId>org.openjdk.jmh</groupId> |
| 232 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 233 | + <version>1.37</version> |
| 234 | + </path> |
| 235 | + </annotationProcessorPaths> |
211 | 236 | </configuration> |
212 | 237 | </plugin> |
213 | 238 | <plugin> |
|
313 | 338 | <plugin> |
314 | 339 | <groupId>org.apache.maven.plugins</groupId> |
315 | 340 | <artifactId>maven-javadoc-plugin</artifactId> |
316 | | - <version>3.4.1</version> |
| 341 | + <version>3.11.2</version> |
317 | 342 | <executions> |
318 | 343 | <execution> |
319 | 344 | <id>attach-javadocs</id> |
|
335 | 360 | <plugin> |
336 | 361 | <groupId>org.apache.maven.plugins</groupId> |
337 | 362 | <artifactId>maven-jar-plugin</artifactId> |
338 | | - <version>3.3.0</version> |
| 363 | + <version>3.4.2</version> |
339 | 364 | <configuration> |
340 | 365 | <archive> |
341 | 366 | <manifestEntries> |
|
358 | 383 | <plugin> |
359 | 384 | <groupId>org.apache.maven.plugins</groupId> |
360 | 385 | <artifactId>maven-surefire-plugin</artifactId> |
361 | | - <version>3.2.5</version> |
| 386 | + <version>3.5.2</version> |
362 | 387 | <configuration> |
363 | 388 | <trimStackTrace>false</trimStackTrace> |
364 | 389 | <!-- AlterViewTest does deep reflection --> |
|
373 | 398 | <plugin> |
374 | 399 | <groupId>org.jacoco</groupId> |
375 | 400 | <artifactId>jacoco-maven-plugin</artifactId> |
376 | | - <version>0.8.10</version> |
| 401 | + <version>0.8.11</version> |
377 | 402 | <executions> |
378 | 403 | <execution> |
379 | 404 | <goals> |
|
392 | 417 | <plugin> |
393 | 418 | <groupId>com.diffplug.spotless</groupId> |
394 | 419 | <artifactId>spotless-maven-plugin</artifactId> |
395 | | - <version>2.28.0</version> |
| 420 | + <version>2.43.0</version> |
396 | 421 | <configuration> |
397 | 422 | <!-- optional: limit format enforcement to just the files changed by this feature branch --> |
398 | 423 | <ratchetFrom>origin/master</ratchetFrom> |
|
0 commit comments