标签: maven maven-3
我可以在jar执行中的maven plugin内加载属性文件吗?
jar
maven plugin
我有一个带有系统属性的jar(除其他外)。我可以下载并扩展它,但我想知道我是否有办法配置maven plugin(maven jetty plugin)来加载这些属性。我在想:
maven
plugin
maven jetty plugin
<configuration> <systemPropertiesFile></systemPropertiesFile> </configuration>
答案 0 :(得分:2)
您可能必须首先使用dependency:unpack将属性写入临时文件,然后使用properties-maven-plugin来读取该文件中的属性。
dependency:unpack