Skip to content

Commit 12a794c

Browse files
authored
fix [fj-doc-maven-plugin] m2e lifecycleMappingMetadata (xml is not valid) # 194 (#195)
1 parent a3e9d30 commit 12a794c

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
[fj-doc-maven-plugin] m2e lifecycleMappingMetadata (xml is not valid) # 194
13+
1014
### Changed
1115

1216
- [fj-doc-maven-plugin] goal init, added openapi documentation for flavour 'micronaut-4'

fj-doc-maven-plugin/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
<lifecycleMappingMetadata>
22
<pluginExecutions>
3-
<!-- configurazione for mojo:generate, will run all builds. -->
3+
<!-- configuration for mojo:init, will run all builds. -->
4+
<pluginExecution>
5+
<pluginExecutionFilter>
6+
<goals>
7+
<goal>init</goal>
8+
</goals>
9+
</pluginExecutionFilter>
10+
<action>
11+
<execute>
12+
<runOnIncremental>false</runOnIncremental>
13+
<runOnConfiguration>false</runOnConfiguration>
14+
</execute>
15+
</action>
16+
</pluginExecution>
17+
<!-- configuration for mojo:add, will run all builds. -->
418
<pluginExecution>
519
<pluginExecutionFilter>
620
<goals>
@@ -14,4 +28,19 @@
1428
</execute>
1529
</action>
1630
</pluginExecution>
31+
<!-- configuration for mojo:verify, will run all builds. -->
32+
<pluginExecution>
33+
<pluginExecutionFilter>
34+
<goals>
35+
<goal>verify</goal>
36+
</goals>
37+
</pluginExecutionFilter>
38+
<action>
39+
<execute>
40+
<runOnIncremental>false</runOnIncremental>
41+
<runOnConfiguration>true</runOnConfiguration>
42+
</execute>
43+
</action>
44+
</pluginExecution>
45+
</pluginExecutions>
1746
</lifecycleMappingMetadata>

0 commit comments

Comments
 (0)