Author: rahul Date: Sat Aug 1 00:55:22 2009 New Revision: 799782 URL: http://svn.apache.org/viewvc?rev=799782&view=rev Log: JEXL-60 Step 4 of 4
POM changes: * Upgrade javacc-maven-plugin to v2.5 * Add findbugs report * Remove two tab characters Modified: commons/proper/jexl/branches/2.0/pom.xml Modified: commons/proper/jexl/branches/2.0/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/pom.xml?rev=799782&r1=799781&r2=799782&view=diff ============================================================================== --- commons/proper/jexl/branches/2.0/pom.xml (original) +++ commons/proper/jexl/branches/2.0/pom.xml Sat Aug 1 00:55:22 2009 @@ -82,14 +82,14 @@ <organization>Apache Software Foundation</organization> </developer> </developers> - + <contributors> <contributor> <name>Henri Biestro</name> <email>hbiestro at gmail dot com</email> </contributor> </contributors> - + <dependencies> <dependency> @@ -166,30 +166,18 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> - <version>2.1</version> + <version>2.5</version> <executions> <execution> <id>jexl-jjtree</id> <configuration> <sourceDirectory>${basedir}/src/java/org/apache/commons/jexl/parser</sourceDirectory> - <outputDirectory>${project.build.directory}/generated-sources/java/org/apache/commons/jexl/parser</outputDirectory> - <timestampDirectory>${project.build.directory}/generated-sources/javacc-timestamp</timestampDirectory> - <packageName>org.apache.commons.jexl.parser</packageName> - </configuration> - <goals> - <goal>jjtree</goal> - </goals> - </execution> - <execution> - <id>jexl-javacc</id> - <configuration> - <sourceDirectory>${project.build.directory}/generated-sources/java/org/apache/commons/jexl/parser</sourceDirectory> <outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory> <timestampDirectory>${project.build.directory}/generated-sources/javacc-timestamp</timestampDirectory> <packageName>org.apache.commons.jexl.parser</packageName> </configuration> <goals> - <goal>javacc</goal> + <goal>jjtree-javacc</goal> </goals> </execution> </executions> @@ -240,6 +228,16 @@ </configuration> </plugin> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.0.1</version> + <configuration> + <xmlOutput>true</xmlOutput> + <!-- Optional derectory to put findbugs xdoc xml report --> + <xmlOutputDirectory>target/site</xmlOutputDirectory> + </configuration> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.3</version>