-
Feature Request
-
Resolution: Duplicate
-
Major
-
None
-
1.2.0.Alpha4
-
None
-
None
I use the plugin to run various cli scripts prior to packaging the server. The xml config file has variables that are resolved from a system.properties file at start time.
If I have a command line like:
/socket-binding-group=standard-sockets/socket-binding=iiop:add(interface="unsecure",port="${orb.unsecure-port:10000}")
the plugin currently evaluates the ${orb.unsecure-port} as variable (maven?) and I get
<socket-binding name="iiop" interface="unsecure" port="10000"/>
but I would like to get:
<socket-binding name="iiop" interface="unsecure" port="${orb.unsecure-port:10000}"/>
- duplicates
-
WFMP-79 Expressions should not be resolved in scripts in the execute-commands MOJO
- Resolved