Skip to content

Commit

Permalink
javacc: match output folder with package name
Browse files Browse the repository at this point in the history
- instead of generating files to generated-sources/javacc/net/automatalib/...,
  generate them directly to generated-sources/net/automatalib/...
- Together with the change to the lifecycle mapping, this also fixes an error
  when importing AutomataLib in Eclipse.
  • Loading branch information
mtf90 committed Jul 28, 2018
1 parent b932c81 commit 991a039
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Expand Up @@ -586,6 +586,9 @@ limitations under the License.
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
<version>${javacc-plugin.version}</version>
<configuration>
<outputDirectory>${project.build.directory}/generated-sources/</outputDirectory>
</configuration>
<executions>
<execution>
<id>javacc</id>
Expand Down Expand Up @@ -945,6 +948,7 @@ limitations under the License.
</pluginExecutionFilter>
<action>
<execute>
<runOnConfiguration>true</runOnConfiguration>
<runOnIncremental>true</runOnIncremental>
</execute>
</action>
Expand Down

0 comments on commit 991a039

Please sign in to comment.