Skip to content

Commit

Permalink
Integrate with m2e. (#14)
Browse files Browse the repository at this point in the history
* Integrate with m2e. This fixes the "plugin execution not covered by a lifecycle configuration" message in eclipse.
The plugin now runs incrementally, i.e. on every save in eclipse.
  • Loading branch information
Postremus authored Feb 24, 2023
1 parent cfa32e1 commit 32871cb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.1.0

- Integrate with m2e. This fixes the "plugin execution not covered by a lifecycle configuration" message in eclipse.

# 3.0

- Move plugin to pro-crafting.
Expand Down
17 changes: 17 additions & 0 deletions src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<goals>
<goal>jasper</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>true</runOnIncremental>
<runOnConfiguration>false</runOnConfiguration>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>

0 comments on commit 32871cb

Please sign in to comment.