Skip to content

Commit 695af0b

Browse files
build: upgrade the Maven plugin
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com> Signed-off-by: manticore-projects <andreas@manticore-projects.com>
1 parent 7a5428d commit 695af0b

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ jobs:
3939
runs-on: ${{ matrix.os }}
4040
strategy:
4141
matrix:
42-
# currently Windows does not work w/ code page related issues
43-
# os: [ ubuntu-latest, windows-latest, macos-latest ]
44-
os: [ ubuntu-latest, macos-latest ]
42+
os: [ ubuntu-latest, windows-latest, macos-latest ]
4543
steps:
4644
- uses: actions/checkout@main
4745
with:

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276
<plugin>
277277
<groupId>org.javacc.plugin</groupId>
278278
<artifactId>javacc-maven-plugin</artifactId>
279-
<version>3.0.3</version>
279+
<version>3.8.0</version>
280280
<executions>
281281
<execution>
282282
<id>javacc</id>
@@ -293,6 +293,13 @@
293293

294294
<!-- <unicodeInput>true</unicodeInput> -->
295295
<!-- <javaUnicodeEscape>true</javaUnicodeEscape> -->
296+
<javaccCmdLineArgs>
297+
<enc>-GRAMMAR_ENCODING="UTF-8"</enc>
298+
<!-- <jjod>-OUTPUT_DIRECTORY="${project.build.directory}/generated-sources/javacc"</jjod>-->
299+
</javaccCmdLineArgs>
300+
<!-- <jjtreeCmdLineArgs>-->
301+
<!-- <jjtod>-JJTREE_OUTPUT_DIRECTORY="${project.build.directory}/generated-sources/jjtree"</jjtod>-->
302+
<!-- </jjtreeCmdLineArgs>-->
296303
</configuration>
297304
</execution>
298305
</executions>

0 commit comments

Comments
 (0)