我正在使用 maven 插件在构建时生成一些项目资源。它在流程资源阶段执行。我目前正在指示 eclipse 在自动构建时忽略该插件,因为我不希望每次保存都生成资源。但是,我确实想在允许项目运行之前生成资源。
我尝试更改与我的插件关联的操作以执行,但这似乎并没有真正导致 eclipse 执行它。我尝试将 runOnIncremental 设置为 false 和 true,或者完全不存在。
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.foo</groupId>
<artifactId>my-plugin</artifactId>
<versionRange>[0.0.1-SNAPSHOT,)</versionRange>
<goals>
<goal>my-goal</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>false</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
有没有办法让 eclipse 在我运行时自动生成我的资源?