atom feed19 messages in org.apache.cocoon.devRe: [C3] Concurrency issues with Comp...
FromSent OnAttachments
Javier PuertoMar 14, 2012 5:54 am.diff, .diff
Steven DolgMar 14, 2012 7:37 am 
Javier PuertoMar 14, 2012 8:16 am 
Thorsten ScherlerMar 14, 2012 7:25 pm 
Igor MalininMar 15, 2012 1:12 am 
Robby PelssersMar 15, 2012 1:40 am 
Igor MalininMar 15, 2012 1:54 am 
Robby PelssersMar 15, 2012 1:57 am 
Javier PuertoMar 15, 2012 2:22 am 
Igor MalininMar 15, 2012 2:49 am 
Robby PelssersMar 15, 2012 3:13 am 
Steven DolgMar 15, 2012 4:03 am 
Igor MalininMar 15, 2012 4:03 am 
Steven DolgMar 16, 2012 3:06 am 
Javier PuertoMar 16, 2012 6:32 am 
Thorsten ScherlerMar 16, 2012 7:25 pm 
Steven DolgMar 29, 2012 3:14 am 
Thorsten ScherlerMar 29, 2012 9:01 am 
Javier PuertoMar 29, 2012 4:36 pm 
Subject:Re: [C3] Concurrency issues with ComponentProvider
From:Igor Malinin (igor@gmail.com)
Date:Mar 15, 2012 4:03:56 am
List:org.apache.cocoon.dev

This should be removed without RCL: <webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory>

I don't start individual blocks so I cannot help with this. But you can always workaround it by creating web-app that references one block and nothing else.

On 2012-03-15 12:13, Robby Pelssers wrote:

Hi Igor,

I commented out the cocoon-maven-plugin and now jetty starts fine. But now the
below configuration does not work anymore when executing mvn jetty:run

<plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <!--
jetty-maven-plugin --> <version>6.1.26</version> <!-- 8.1.0.RC5 --> <configuration> <connectors> <connector
implementation="org.mortbay.jetty.nio.SelectChannelConnector"> <!--
org.eclipse.jetty.server.nio.SelectChannelConnector --> <port>8888</port> <maxIdleTime>30000</maxIdleTime> </connector> </connectors> <webAppSourceDirectory>${project.build.directory}/rcl/webapp</webAppSourceDirectory> <contextPath>/</contextPath> <systemProperties> <systemProperty> <name>org.apache.cocoon.mode</name> <value>dev</value> </systemProperty> </systemProperties> </configuration> </plugin>

It now can't find the webapp source directory anymore as I expect that the
cocoon-maven-plugin copied over files to the target/rcl folder.

So my next question is. How do you test (and start) an individual block?