У меня есть плагин Maven, определенный в pom.xml, которому я хочу передать путь, указывающий на settings.xml, который в настоящее время используется в сборке.Есть ли в Maven встроенное свойство, которое я мог бы использовать для этого?
Мой случай:
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<container>
<systemProperties combine.children="append">
<kie.maven.settings.custom>${looking-for-a-property-to-put-here}</kie.maven.settings.custom>
</systemProperties>
</container>
</configuration>
</plugin>