We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb764c commit 05f8946Copy full SHA for 05f8946
extensions/modules/simpleql/pom.xml
@@ -81,6 +81,25 @@
81
</execution>
82
</executions>
83
</plugin>
84
+ <plugin>
85
+ <groupId>software.xdev</groupId>
86
+ <artifactId>find-and-replace-maven-plugin</artifactId>
87
+ <executions>
88
+ <execution>
89
+ <id>replace-underscore-with-hyphen</id>
90
+ <phase>process-sources</phase>
91
+ <goals>
92
+ <goal>file-contents</goal>
93
+ </goals>
94
+ <configuration>
95
+ <baseDir>target/generated-sources/antlr/org/exist/xquery/modules/simpleql</baseDir>
96
+ <fileMask>SimpleQLLexer.java</fileMask>
97
+ <findRegex>new Integer</findRegex>
98
+ <replaceValue>Integer.valueOf</replaceValue>
99
+ </configuration>
100
+ </execution>
101
+ </executions>
102
+ </plugin>
103
</plugins>
104
</build>
105
0 commit comments