我有一些maven的插件,它们都使用相同的元素列表。
它看起来像:
<configuration>
<sourceDirectory>/path/to/source</sourceDirectory>
<outputDirectory>/path/to/output</outputDirectory>
<basePackage>com.example</basePackage>
<imports>
<import>some/file/location</import>
<import>another/file/location</import>
<import>and/another/file</import>
<import>and/another/file</import>
<import>and/another/file</import>
<import>and/another/file</import>
<import>and/another/file</import>
<import>and/another/file</import>
<import>and/another/file</import>
</imports>
</configuration>
我希望每个配置都有不同的src / output和base包,但它们都共享相同的导入列表。
有没有办法跨配置共享xml属性?