File tree Expand file tree Collapse file tree 2 files changed +31
-7
lines changed Expand file tree Collapse file tree 2 files changed +31
-7
lines changed Original file line number Diff line number Diff line change @@ -1084,6 +1084,26 @@ The BaseX Team. The original license statement is also included below.]]></pream
1084
1084
</executions >
1085
1085
</plugin >
1086
1086
1087
+ <plugin >
1088
+ <groupId >software.xdev</groupId >
1089
+ <artifactId >find-and-replace-maven-plugin</artifactId >
1090
+ <executions >
1091
+ <execution >
1092
+ <id >replace-underscore-with-hyphen</id >
1093
+ <phase >process-sources</phase >
1094
+ <goals >
1095
+ <goal >file-contents</goal >
1096
+ </goals >
1097
+ <configuration >
1098
+ <baseDir >target/generated-sources/antlr/org/exist/xquery/parser/</baseDir >
1099
+ <fileMask >XQueryLexer.java</fileMask >
1100
+ <findRegex >new Integer</findRegex >
1101
+ <replaceValue >Integer.valueOf</replaceValue >
1102
+ </configuration >
1103
+ </execution >
1104
+ </executions >
1105
+ </plugin >
1106
+
1087
1107
<plugin >
1088
1108
<artifactId >maven-compiler-plugin</artifactId >
1089
1109
<executions >
Original file line number Diff line number Diff line change 617
617
618
618
<pluginManagement >
619
619
<plugins >
620
+ <plugin >
621
+ <groupId >software.xdev</groupId >
622
+ <artifactId >find-and-replace-maven-plugin</artifactId >
623
+ <version >1.0.2</version >
624
+ </plugin >
620
625
<plugin >
621
626
<groupId >org.apache.maven.plugins</groupId >
622
627
<artifactId >maven-clean-plugin</artifactId >
979
984
<exclude >FDB-backport-LGPL-21-ONLY-license.xml.template.txt</exclude >
980
985
<exclude >LGPL-21-license.template.txt</exclude >
981
986
<exclude >LGPL-21-license.txt</exclude >
987
+ <exclude >LGPL-21-license.template.txt</exclude >
988
+ <exclude >**/README.md</exclude >
989
+ <exclude >**/README</exclude >
990
+ <exclude >**/LICENSE</exclude >
991
+ <exclude >**/*.xar</exclude >
982
992
</excludes >
983
993
</licenseSet >
984
994
</licenseSets >
1006
1016
<email >${contact.email} </email >
1007
1017
<url >${project.organization.url} </url >
1008
1018
</properties >
1009
- <excludes >
1010
- <exclude >LGPL-21-license.template.txt</exclude >
1011
- <exclude >**/README.md</exclude >
1012
- <exclude >**/README</exclude >
1013
- <exclude >**/LICENSE</exclude >
1014
- <exclude >**/*.xar</exclude >
1015
- </excludes >
1016
1019
<encoding >${project.build.sourceEncoding} </encoding >
1017
1020
</configuration >
1018
1021
<executions >
1041
1044
<artifactId >maven-resources-plugin</artifactId >
1042
1045
<configuration >
1043
1046
<encoding >${project.build.sourceEncoding} </encoding >
1047
+ <propertiesEncoding >${project.build.sourceEncoding} </propertiesEncoding >
1044
1048
</configuration >
1045
1049
</plugin >
1046
1050
<plugin >
You can’t perform that action at this time.
0 commit comments