Переменные SystemProperty в плагине весенней загрузки maven не устанавливаются - PullRequest
0 голосов
/ 29 августа 2018

Это мой плагин, в котором я установил systemPropertyVariables

<build>
    <plugins>
       <plugin>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-maven-plugin</artifactId>
               <configuration>
                  <systemPropertyVariables>
                      <propertyFilePath>e2e_postgres.properties</propertyFilePath>
                  </systemPropertyVariables>
               </configuration>
        </plugin>
    </plugins>
</build>

Это мой код Java, к которому я получаю доступ

String propertyFilePath = System.getProperty("propertyFilePath");
            if(StringUtils.isEmpty(propertyFilePath)) {
                throw new TestingToolsRuntimeException("Could not find property for 'propertyFilePath'");
            }

Получаю следующее исключение, так как свойство не установлено

com.test.tools.TestingToolsRuntimeException: com.test.tools.TestingToolsRuntimeException: Could not find property for 'propertyFilePath'

моя весенняя загрузочная версия 1.5.14. ВЫПУСК. Это проблема для свойства не устанавливается?

...