Skip to content

Commit 57941c2

Browse files
committed
reset to fixed dependency versions
1 parent 78318bb commit 57941c2

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

pom.xml

+11-14
Original file line numberDiff line numberDiff line change
@@ -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,13 @@
192192
</plugin>
193193
<plugin>
194194
<artifactId>maven-compiler-plugin</artifactId>
195-
<version>3.10.1</version>
195+
<version>3.13.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>
204-
<maxmem>2000m</maxmem>
205202
</configuration>
206203
</plugin>
207204
<plugin>
@@ -226,7 +223,7 @@
226223
<dependency>
227224
<groupId>net.java.dev.javacc</groupId>
228225
<artifactId>javacc</artifactId>
229-
<version>[7.0.13,)</version>
226+
<version>[7.0.13,8)</version>
230227
</dependency>
231228
</dependencies>
232229
</plugin>
@@ -304,7 +301,7 @@
304301
<plugin>
305302
<groupId>org.apache.maven.plugins</groupId>
306303
<artifactId>maven-javadoc-plugin</artifactId>
307-
<version>3.4.1</version>
304+
<version>3.11.2</version>
308305
<executions>
309306
<execution>
310307
<id>attach-javadocs</id>
@@ -326,7 +323,7 @@
326323
<plugin>
327324
<groupId>org.apache.maven.plugins</groupId>
328325
<artifactId>maven-jar-plugin</artifactId>
329-
<version>3.3.0</version>
326+
<version>3.4.2</version>
330327
<configuration>
331328
<archive>
332329
<manifestEntries>
@@ -349,7 +346,7 @@
349346
<plugin>
350347
<groupId>org.apache.maven.plugins</groupId>
351348
<artifactId>maven-surefire-plugin</artifactId>
352-
<version>3.2.5</version>
349+
<version>3.5.2</version>
353350
<configuration>
354351
<trimStackTrace>false</trimStackTrace>
355352
<!-- AlterViewTest does deep reflection -->
@@ -364,7 +361,7 @@
364361
<plugin>
365362
<groupId>org.jacoco</groupId>
366363
<artifactId>jacoco-maven-plugin</artifactId>
367-
<version>0.8.10</version>
364+
<version>0.8.11</version>
368365
<executions>
369366
<execution>
370367
<goals>
@@ -383,7 +380,7 @@
383380
<plugin>
384381
<groupId>com.diffplug.spotless</groupId>
385382
<artifactId>spotless-maven-plugin</artifactId>
386-
<version>2.28.0</version>
383+
<version>2.43.0</version>
387384
<configuration>
388385
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
389386
<ratchetFrom>origin/master</ratchetFrom>

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

+9
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)