Add a list of system properties from a properties file
------------------------------------------------------

                 Key: SUREFIRE-736
                 URL: http://jira.codehaus.org/browse/SUREFIRE-736
             Project: Maven Surefire
          Issue Type: New Feature
          Components: Maven Surefire Plugin
    Affects Versions: 2.8.1
            Reporter: Mathieu Perez
            Priority: Minor


Currently, Surefire plugin makes it possible to add a list of system properties 
within pom.xml as following 

<configuration>
  <systemPropertyVariables>
    <propertyName>propertyValue</propertyName>
    <buildDirectory>${project.build.directory}</buildDirectory>
    [...]
  </systemPropertyVariables>
</configuration>

Would it be possible to add a list of system properties from a properties file 
as following?

<configuration>
  <systemPropertyVariables>
    <propertiesFiles>
       
<propertiesFile>${project.build.directory}/myConfig.properties</propertiesFile>
       [...]
    </propertiesFiles>
  </systemPropertyVariables>
</configuration>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to