Skip to content

Commit

Permalink
118: bind clean to generate-sources
Browse files Browse the repository at this point in the history
Task-Url: #118
  • Loading branch information
LorenzoBettini committed Jun 24, 2021
1 parent 1c96293 commit b3ecf2a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion jbase.example.project/pom.xml
Expand Up @@ -26,8 +26,13 @@
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<!-- To avoid the error:
"tycho-packaging-plugin:build-qualifier (default-build-qualifier)
on project jbase.example.project: Working tree is dirty."
We clean src-gen in generate-sources phase, before running
xtext-maven-plugin -->
<id>clean-src-gen</id>
<phase>clean</phase>
<phase>generate-sources</phase>
<goals>
<goal>clean</goal>
</goals>
Expand Down

0 comments on commit b3ecf2a

Please sign in to comment.