我正在使用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在我运行时自动生成资源?