Как сделать systemPropertyVariables обязательным - PullRequest
1 голос
/ 23 октября 2019

Свойства перечислены в 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>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...