Skip to content

Commit bfbf357

Browse files
Merge branch 'master' of github.com:JSQLParser/JSqlParser
2 parents 517fe72 + c5d91d2 commit bfbf357

File tree

2 files changed

+25
-14
lines changed

2 files changed

+25
-14
lines changed

pom.xml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.github.jsqlparser</groupId>
44
<artifactId>jsqlparser</artifactId>
5-
<version>5.2-SNAPSHOT</version>
5+
<version>5.3-SNAPSHOT</version>
66
<name>JSQLParser library</name>
77
<inceptionYear>2004</inceptionYear>
88
<organization>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>net.java.dev.javacc</groupId>
3131
<artifactId>javacc</artifactId>
32-
<version>[7.0.13,)</version>
32+
<version>7.0.13</version>
3333
<scope>test</scope>
3434
</dependency>
3535
<dependency>
@@ -59,13 +59,13 @@
5959
<dependency>
6060
<groupId>org.assertj</groupId>
6161
<artifactId>assertj-core</artifactId>
62-
<version>[3.25.3,)</version>
62+
<version>3.27.3</version>
6363
<scope>test</scope>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.apache.commons</groupId>
6767
<artifactId>commons-lang3</artifactId>
68-
<version>[3.14.0,)</version>
68+
<version>3.17.0</version>
6969
<scope>test</scope>
7070
</dependency>
7171
<dependency>
@@ -173,7 +173,7 @@
173173
<plugin>
174174
<groupId>org.codehaus.mojo</groupId>
175175
<artifactId>build-helper-maven-plugin</artifactId>
176-
<version>3.2.0</version>
176+
<version>3.6.0</version>
177177
<executions>
178178
<execution>
179179
<id>add-source</id>
@@ -192,16 +192,18 @@
192192
</plugin>
193193
<plugin>
194194
<artifactId>maven-compiler-plugin</artifactId>
195-
<version>3.10.1</version>
195+
<version>3.14.0</version>
196196
<configuration>
197197
<source>11</source>
198198
<target>11</target>
199199
<showWarnings>true</showWarnings>
200200
<encoding>${project.build.sourceEncoding}</encoding>
201201
<showDeprecation>true</showDeprecation>
202-
<fork>true</fork>
203-
<meminitial>128m</meminitial>
204202
<maxmem>2000m</maxmem>
203+
<compilerArgs>
204+
<arg>-J-Xss4M</arg>
205+
</compilerArgs>
206+
<fork>true</fork>
205207
</configuration>
206208
</plugin>
207209
<plugin>
@@ -226,7 +228,7 @@
226228
<dependency>
227229
<groupId>net.java.dev.javacc</groupId>
228230
<artifactId>javacc</artifactId>
229-
<version>[7.0.13,)</version>
231+
<version>[7.0.13,8)</version>
230232
</dependency>
231233
</dependencies>
232234
</plugin>
@@ -304,7 +306,7 @@
304306
<plugin>
305307
<groupId>org.apache.maven.plugins</groupId>
306308
<artifactId>maven-javadoc-plugin</artifactId>
307-
<version>3.4.1</version>
309+
<version>3.11.2</version>
308310
<executions>
309311
<execution>
310312
<id>attach-javadocs</id>
@@ -326,7 +328,7 @@
326328
<plugin>
327329
<groupId>org.apache.maven.plugins</groupId>
328330
<artifactId>maven-jar-plugin</artifactId>
329-
<version>3.3.0</version>
331+
<version>3.4.2</version>
330332
<configuration>
331333
<archive>
332334
<manifestEntries>
@@ -349,7 +351,7 @@
349351
<plugin>
350352
<groupId>org.apache.maven.plugins</groupId>
351353
<artifactId>maven-surefire-plugin</artifactId>
352-
<version>3.2.5</version>
354+
<version>3.5.2</version>
353355
<configuration>
354356
<trimStackTrace>false</trimStackTrace>
355357
<!-- AlterViewTest does deep reflection -->
@@ -364,7 +366,7 @@
364366
<plugin>
365367
<groupId>org.jacoco</groupId>
366368
<artifactId>jacoco-maven-plugin</artifactId>
367-
<version>0.8.10</version>
369+
<version>0.8.11</version>
368370
<executions>
369371
<execution>
370372
<goals>
@@ -383,7 +385,7 @@
383385
<plugin>
384386
<groupId>com.diffplug.spotless</groupId>
385387
<artifactId>spotless-maven-plugin</artifactId>
386-
<version>2.28.0</version>
388+
<version>2.43.0</version>
387389
<configuration>
388390
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
389391
<ratchetFrom>origin/master</ratchetFrom>

src/test/java/net/sf/jsqlparser/expression/OracleHierarchicalExpressionTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*-
2+
* #%L
3+
* JSQLParser library
4+
* %%
5+
* Copyright (C) 2004 - 2025 JSQLParser
6+
* %%
7+
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
8+
* #L%
9+
*/
110
package net.sf.jsqlparser.expression;
211

312
import net.sf.jsqlparser.JSQLParserException;

0 commit comments

Comments
 (0)