You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2007/03/29 21:53:54 UTC

svn commit: r523820 - /cocoon/trunk/blocks/pom.xml

Author: reinhard
Date: Thu Mar 29 12:53:54 2007
New Revision: 523820

URL: http://svn.apache.org/viewvc?view=rev&rev=523820
Log:
configure rcl plugin and jetty plugin for all blocks

Modified:
    cocoon/trunk/blocks/pom.xml

Modified: cocoon/trunk/blocks/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/pom.xml?view=diff&rev=523820&r1=523819&r2=523820
==============================================================================
--- cocoon/trunk/blocks/pom.xml (original)
+++ cocoon/trunk/blocks/pom.xml Thu Mar 29 12:53:54 2007
@@ -45,6 +45,46 @@
           </archive>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.cocoon</groupId>
+        <artifactId>cocoon-rcl-plugin</artifactId>
+        <version>1.0.0-M1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <phase>compile</phase>
+            <goals>
+              <goal>webapp</goal>
+            </goals>
+          </execution>
+        </executions>        
+      </plugin>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.0.2</version>
+        <configuration>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>8888</port>
+              <maxIdleTime>30000</maxIdleTime>
+            </connector>
+          </connectors>
+          <webAppSourceDirectory>target/rcl/webapp</webAppSourceDirectory>
+          <contextPath>/</contextPath>
+          <systemProperties>
+            <systemProperty>
+              <name>org.apache.cocoon.log4j.loglevel</name>
+              <value>ERROR</value>
+            </systemProperty>
+          </systemProperties>
+          <systemProperties>
+            <systemProperty>
+              <name>org.apache.cocoon.mode</name>
+              <value>dev</value>
+            </systemProperty>
+          </systemProperties>          
+        </configuration>
+      </plugin>             
     </plugins>
   </build>
   <modules>