jbossas / jboss-as-maven-plugin

Maven plugin to deploy applications to JBoss AS 7 (moved to https://github.com/wildfly/wildfly-maven-plugin)
74 stars 69 forks source link

add a serverArgs configuration option #76

Closed mattdrees closed 10 years ago

mattdrees commented 10 years ago

This works similarly to jvmArgs, except that the arguments are passed to the Main class run by jboss-modules instead of being passed to the JVM.

This implements https://issues.jboss.org/browse/JBASMP-72.

jamezp commented 10 years ago

Just an FYI. I've changed this from a space delimited to string to an array in #80. In maven 3.0.3 I think and greater you can pass arrays via the command line delimited by a comma.

mattdrees commented 10 years ago

Nice. Yes, that looks better.

Thanks!