如何将Maven中的主资源目录指定为文件?我正在使用${project.resources[0]}
,但这是org.apache.maven.model.Resource
,而我需要java.io.File
。
我需要在rpm-maven-plugin中使用它:
<mapping>
<directory>${app.home}/cfg</directory>
<sources>
<source>
<location>${project.resources[0]}</location>
</source>
</sources>
</mapping>