1

我可以jarmaven plugin执行中加载属性文件吗?

我有一个带有系统属性的罐子(除其他外)。我可以下载并展开它,但我想知道是否有办法配置maven plugin( maven jetty plugin) 来加载这些属性。我在想:

<configuration>
    <systemPropertiesFile></systemPropertiesFile>
</configuration>
4

1 回答 1

2

您可能必须首先使用dependency:unpack将属性写入临时文件,然后使用properties-maven-plugin从该文件中读取属性。

于 2013-05-03T10:38:59.330 回答