You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by er...@apache.org on 2012/02/20 15:04:20 UTC

svn commit: r1291267 - /james/jsieve/trunk/core/pom.xml

Author: eric
Date: Mon Feb 20 14:04:19 2012
New Revision: 1291267

URL: http://svn.apache.org/viewvc?rev=1291267&view=rev
Log:
Add build-helper-maven-plugin on apache-jsieve-core pom for generated src (JSIEVE-85)

Modified:
    james/jsieve/trunk/core/pom.xml

Modified: james/jsieve/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/james/jsieve/trunk/core/pom.xml?rev=1291267&r1=1291266&r2=1291267&view=diff
==============================================================================
--- james/jsieve/trunk/core/pom.xml (original)
+++ james/jsieve/trunk/core/pom.xml Mon Feb 20 14:04:19 2012
@@ -121,6 +121,25 @@
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
             </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>add-source</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>add-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>${project.build.directory}/generated-sources/javacc</source>
+                                <source>${project.build.directory}/generated-sources/jjtree</source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
     



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org