Thanks Stephen - that solved it.
I had not researched the surefire/failsafe configurations enough. I've used
option 2 and passed the port to the failsafe plugin as it is an integration
test. Also, the phase I have used is pre-integration-test. There is a
default port already setup in a properties file and now the randomly chosen
port overrides it as a system property.
Overall, problem solved. Thanks to all for the very prompt replies.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.1</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<argLine>-Xms128m -Xmx1024m
-Djava.awt.headless=true</argLine>
<forkMode>always</forkMode>
<systemPropertyVariables>
<jetty.proxy.port>${jetty.proxy.port}</jetty.proxy.port>
</systemPropertyVariables>
</configuration>
</plugin>
--
View this message in context:
http://maven.40175.n5.nabble.com/How-to-pass-the-contents-of-a-file-as-the-value-of-a-command-line-parameter-when-invoking-a-maven-gol-tp5767482p5768229.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]