Author: grobmeier Date: Sun Oct 9 13:04:17 2011 New Revision: 1180604 URL: http://svn.apache.org/viewvc?rev=1180604&view=rev Log: added comments and explained a few options on javacc module
Modified: commons/proper/ognl/trunk/pom.xml Modified: commons/proper/ognl/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/pom.xml?rev=1180604&r1=1180603&r2=1180604&view=diff ============================================================================== --- commons/proper/ognl/trunk/pom.xml (original) +++ commons/proper/ognl/trunk/pom.xml Sun Oct 9 13:04:17 2011 @@ -267,9 +267,19 @@ limitations under the License. <configuration> <outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory> <timestampDirectory>${project.build.directory}/generated-sources/javacc-timestamp</timestampDirectory> - <packageName>org.apache.commons.ognl</packageName> + <package>org.apache.commons.ognl</package> + <!-- + Uncomment if AST files needs to be generated + + <nodePackage>*.jtree</nodePackage> + --> + <!-- + Uncomment if visitor default implementation needs to be generated + <visitor>true</visitor> + --> </configuration> <goals> + <!-- change goal to jtree-javacc to generate AST too --> <goal>javacc</goal> </goals> </execution>