File tree Expand file tree Collapse file tree
spring-data-eclipse-store
java/software/xdev/spring/data/eclipse/store/repository Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747 <maven .compiler.release>${javaVersion} </maven .compiler.release>
4848
4949 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
50+
5051 <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>
5154
5255 <!-- Should be in sync with org.eclipse.store:integrations-spring-boot3 -->
5356 <org .springframework.boot.version>3.3.2</org .springframework.boot.version>
164167 </exclusions >
165168 </dependency >
166169
170+ <dependency >
171+ <groupId >org.antlr</groupId >
172+ <artifactId >antlr4-runtime</artifactId >
173+ <version >${antlr4.version} </version >
174+ </dependency >
175+
167176 <dependency >
168177 <groupId >org.junit.jupiter</groupId >
169178 <artifactId >junit-jupiter-engine</artifactId >
309318 </execution >
310319 </executions >
311320 </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 >
312341 </plugins >
313342 </build >
314343 <profiles >
You can’t perform that action at this time.
0 commit comments