Свойства перечислены в systemPropertyVariables в maven-surefire-plugin, как сделать их обязательными? В приведенном ниже коде, как я могу сделать переменную "путь" обязательным?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<systemPropertyVariables>
<Path>${path}</Path>
</systemPropertyVariables>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>