如何在外部属性文件中定义Maven artifactId

时间:2017-02-10 19:29:08

标签: maven

我试图将maven集成到遗留构建设置中。 artifactId和version在旧版安装程序使用的外部文件 build.properties 中定义

<artifactId>${project.name}</artifactId>
<version>${project.version}</version>

基本上我想做的是根据属性变量定义我的Maven artifactId和版本

<field>
    <a>person.addresses[0].address</a>
    <b>employee.address</b>
    <a-deep-index-hint>org.yourpackage.person.entity.Address</a-deep-index-hint>      
</field>

我如何在Maven中完成此任务?

0 个答案:

没有答案