Skip to content

Commit 1fc4c0f

Browse files
Switching from Antlr to CQEngine for SQL-Interpretation
1 parent eb84f3b commit 1fc4c0f

7 files changed

Lines changed: 352 additions & 1278 deletions

File tree

spring-data-eclipse-store/pom.xml

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5050

5151
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
52-
<antlr4.plugin.version>4.13.1</antlr4.plugin.version>
53-
<antlr4.version>4.13.1</antlr4.version>
5452

5553
<!-- Should be in sync with org.eclipse.store:integrations-spring-boot3 -->
5654
<org.springframework.boot.version>3.3.2</org.springframework.boot.version>
@@ -166,11 +164,11 @@
166164
</exclusion>
167165
</exclusions>
168166
</dependency>
169-
167+
170168
<dependency>
171-
<groupId>org.antlr</groupId>
172-
<artifactId>antlr4-runtime</artifactId>
173-
<version>${antlr4.version}</version>
169+
<groupId>com.googlecode.cqengine</groupId>
170+
<artifactId>cqengine</artifactId>
171+
<version>3.6.0</version>
174172
</dependency>
175173

176174
<dependency>
@@ -318,26 +316,6 @@
318316
</execution>
319317
</executions>
320318
</plugin>
321-
<plugin>
322-
<groupId>org.antlr</groupId>
323-
<artifactId>antlr4-maven-plugin</artifactId>
324-
<version>${antlr4.plugin.version}</version>
325-
<executions>
326-
<execution>
327-
<goals>
328-
<goal>antlr4</goal>
329-
</goals>
330-
</execution>
331-
</executions>
332-
<configuration>
333-
<sourceDirectory>src/main/antlr4</sourceDirectory>
334-
<outputDirectory>target/generated-sources/antlr4</outputDirectory>
335-
<arguments>
336-
<argument>-package</argument>
337-
<argument>software.xdev.spring.data.eclipse.store.repository.query.antlr</argument>
338-
</arguments>
339-
</configuration>
340-
</plugin>
341319
</plugins>
342320
</build>
343321
<profiles>

0 commit comments

Comments
 (0)