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 008d9ad commit 14fb80dCopy full SHA for 14fb80d
pom.xml
@@ -83,6 +83,25 @@
83
84
<build>
85
<plugins>
86
+ <plugin>
87
+ <groupId>org.codehaus.mojo</groupId>
88
+ <artifactId>build-helper-maven-plugin</artifactId>
89
+ <executions>
90
+ <execution>
91
+ <id>add-source</id>
92
+ <phase>generate-sources</phase>
93
+ <goals>
94
+ <goal>add-source</goal>
95
+ </goals>
96
+ <configuration>
97
+ <sources>
98
+ <source>${project.build.directory}/generated-sources/javacc/</source>
99
+ <source>${project.build.directory}/generated-sources/jjtree/</source>
100
+ </sources>
101
+ </configuration>
102
+ </execution>
103
+ </executions>
104
+ </plugin>
105
<plugin>
106
<artifactId>maven-compiler-plugin</artifactId>
107
<version>3.7.0</version>
0 commit comments