Eclipseで Maven で tomee-webapp-archtype でMavenプロジェクトを作成すると、以下のようなエラーが出力された。
ライフサイクル構成でカバーされていないプラグインの実行: org.apache.openjpa:openjpa-maven-plugin:3.2.2:enhance (実行: enhancer, phase: process-classes)`
調べると、同じような事象が発生しており、pom.xml
の plugins
タグをpluginManagement
タグで囲うことで解決できたとのことで、試したところ解決した。
pom.xml
<build>
<pluginManagement> ←このタグを追加
<plugins>
<plugin> ... </plugin>
<plugin> ... </plugin>
....
</plugins>
</pluginManagement> ←このタグを追加
</build>
参照したサイトはこちら。