Skip to content

Commit d8019ca

Browse files
build: Windows/Maven/Code-page issues
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
1 parent abb06c0 commit d8019ca

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ sourceSets {
114114
}
115115
}
116116

117+
tasks.withType(JavaCompile).configureEach {
118+
mustRunAfter("generateBuildInfo")
119+
}
120+
117121
tasks.withType(Pmd).configureEach {
118122
mustRunAfter("generateBuildInfo")
119123
}

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,13 @@
285285
<goal>jjtree-javacc</goal>
286286
</goals>
287287
<configuration>
288-
<codeGenerator>java</codeGenerator>
289-
<unicodeInput>true</unicodeInput>
290288
<grammarEncoding>UTF-8</grammarEncoding>
289+
<isStatic>false</isStatic>
290+
<debugParser>false</debugParser>
291+
<debugLookAhead>false</debugLookAhead>
292+
<codeGenerator>java</codeGenerator>
293+
294+
<!-- <unicodeInput>true</unicodeInput> -->
291295
<!-- <javaUnicodeEscape>true</javaUnicodeEscape> -->
292296
</configuration>
293297
</execution>

0 commit comments

Comments
 (0)