]
Aslak Knutsen commented on ARQ-148:
-----------------------------------
I think we can drop the EL part for now, a simple:
{code}
String exp = "${envvar:default}"
if(exp.startwith("$")) {
String envvar, defaultVal = split(exp)
if(System.getSystemProperty(envvar) == null)
return defaultVal;
}
{code}
The most central location would be here:
But maybe move it up a level..
Support EL-like expressions for sysprops and env variables in
arquillian.xml
----------------------------------------------------------------------------
Key: ARQ-148
URL:
https://issues.jboss.org/browse/ARQ-148
Project: Arquillian
Issue Type: Feature Request
Components: Configuration
Reporter: Andrew Rubinger
Fix For: 1.1.0.CR1
Likely we might need to rely on configuration available from the system or environment,
so support usage like:
<tag>${jboss.home}</tag>
<tag>${env.jboss.home}</tag>
...inside arquillian.xml
--
This message is automatically generated by JIRA.
For more information on JIRA, see: