You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2007/08/09 16:09:50 UTC

svn commit: r564209 - /activemq/camel/trunk/examples/camel-example-jms-file/pom.xml

Author: jstrachan
Date: Thu Aug  9 07:09:49 2007
New Revision: 564209

URL: http://svn.apache.org/viewvc?view=rev&rev=564209
Log:
avoided the example program being run as part of the build :)

Modified:
    activemq/camel/trunk/examples/camel-example-jms-file/pom.xml

Modified: activemq/camel/trunk/examples/camel-example-jms-file/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-jms-file/pom.xml?view=diff&rev=564209&r1=564208&r2=564209
==============================================================================
--- activemq/camel/trunk/examples/camel-example-jms-file/pom.xml (original)
+++ activemq/camel/trunk/examples/camel-example-jms-file/pom.xml Thu Aug  9 07:09:49 2007
@@ -58,32 +58,14 @@
 
   <build>
     <plugins>
+
+      <!-- allows the example to be ran via 'mvn compile exec:java' -->
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>exec-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>java</goal>
-            </goals>
-            <phase>install</phase>
-          </execution>
-        </executions>
         <configuration>
           <mainClass>org.apache.camel.example.jmstofile.CamelJmsToFileExample</mainClass>
-
-          <arguments>
-            <!--<argument>argument1</argument>-->
-          </arguments>
-
-          <systemProperties>
-<!--
-            <systemProperty>
-              <key>myproperty</key>
-              <value>myvalue</value>
-            </systemProperty>
--->
-          </systemProperties>
+          <includePluginDependencies>false</includePluginDependencies>
         </configuration>
       </plugin>
     </plugins>