Skip to content

Commit 83abb65

Browse files
committed
Merge remote-tracking branch 'origin/master' into regex-support-extension
2 parents 5cc56e4 + 6f4cf01 commit 83abb65

98 files changed

Lines changed: 7951 additions & 451 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

client-java/controller/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@
122122
<groupId>com.github.jsqlparser</groupId>
123123
<artifactId>jsqlparser</artifactId>
124124
</dependency>
125+
<dependency>
126+
<groupId>org.antlr</groupId>
127+
<artifactId>antlr4-runtime</artifactId>
128+
</dependency>
125129
<dependency>
126130
<groupId>org.junit.jupiter</groupId>
127131
<artifactId>junit-jupiter-engine</artifactId>
@@ -346,12 +350,22 @@
346350
<pattern>net.sf.jsqlparser</pattern>
347351
<shadedPattern>shaded.net.sf.jsqlparser</shadedPattern>
348352
</relocation>
353+
<relocation>
354+
<pattern>org.antlr</pattern>
355+
<shadedPattern>shaded.org.antlr</shadedPattern>
356+
</relocation>
349357
</relocations>
350358
</configuration>
351359
</execution>
352360
</executions>
353361
</plugin>
354362

363+
<!-- Generates the Cypher parser from the Neo4j Cypher25 grammar -->
364+
<plugin>
365+
<groupId>org.antlr</groupId>
366+
<artifactId>antlr4-maven-plugin</artifactId>
367+
</plugin>
368+
355369
</plugins>
356370
</build>
357371

0 commit comments

Comments
 (0)