Author: veithen Date: Sat Jan 28 11:08:29 2012 New Revision: 1237044 URL: http://svn.apache.org/viewvc?rev=1237044&view=rev Log: Avoid @readonly for parameters that can/should only be set on the command line. While @readonly makes sense here, the drawback is that these parameters don't appear in the generated documentation.
Modified: axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java Modified: axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java?rev=1237044&r1=1237043&r2=1237044&view=diff ============================================================================== --- axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java (original) +++ axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java Sat Jan 28 11:08:29 2012 @@ -92,13 +92,12 @@ public class StartServerMojo extends Abs * If this flag is set to <code>true</code>, then the execution of the goal will block after the * server has been started and the services are deployed. This is useful if one wants to * manually test some services deployed on the server or if one wants to run the integration - * tests from an IDE. The flag can only be set using the command line, but not in the POM. + * tests from an IDE. The flag should only be set using the command line, but not in the POM. * <p> * Note: this feature is implemented using a flag (instead of a distinct goal) to make sure that * the server is configured in exactly the same way as in a normal integration test execution. * * @parameter expression="${axis.server.foreground}" default-value="false" - * @readonly */ private boolean foreground;