Date: 2004-03-24T15:49:02 Editor: 80.254.164.242 <> Wiki: Apache Avalon Wiki Page: AvalonFAQ/Merlin URL: http://wiki.apache.org/avalon/AvalonFAQ/Merlin
no comment Change Log: ------------------------------------------------------------------------------ @@ -21,16 +21,40 @@ == I am getting an error ''unable to obtain goal [prepare-filesystem]''. What is wrong? == You don't have the Meta Plugin installed or compiled. -===I get an error saying "No Goal \[avalon:meta\]" == +== I get an error saying "No Goal \[avalon:meta\]" == The two plugins need to be added to you [MAVEN-HOME]/plugins directory. The plugins are shipped with the Merlin binary distribution and include: avalon-meta-plugin-[VERSION].jar merlin-plugin-[VERSION].jar = Running Merlin = -== Why does Merlin interrupt the deployment of my component ? == +== Why does Merlin interrupt the deployment of my component? == -Merlin (builds later than Jan 5, 2004) has a mechanism by which if the component takes too long to deploy, it will interrupt its deployment and move on. If your component takes a long time to initialize and deploy, use the deployment-timeout parameter in kernal.xml. Refer to: http://avalon.apache.org/merlin/meta/kernel/parameters/index.html +Merlin (builds later than Jan 5, 2004) has a mechanism by which if the component takes too long to deploy, it will interrupt its deployment and move on. If your component takes a long time to initialize and deploy, use the deployment-timeout parameter in kernel.xml. Refer to: http://avalon.apache.org/merlin/meta/kernel/parameters/index.html + +== How do I define the deployment timeout a.k.a. I get a FatalCommissioningException? == + +In case the timeout is reached, we get a {{{FatalCommissioningException}}}: + +{{{ +org.apache.avalon.composition.model.FatalCommissioningException: target: +[[/application/main-entry]] did not respond within the timeout period: +[1000] and failed to respond to an interrupt. +}}} + +or the like. {{{application/main-entry}}} and {{{1000}}} may vary from configuration to configuration. + +The timeout may be set in a merlin.properties file. + +{{{ +merlin.deployment.timeout = 0 +}}} + +A value of 0 removes timeout. All other values set the timeout to milliseconds. + +See http://avalon.apache.org/merlin/merlin/kernel/properties.html for a description where this file may be located. + +Daniel Frey, 20040325 == How do I start Merlin? == @@ -150,27 +174,3 @@ | ClassLoader, etc. | |-------------------| }}} - -== How do I define the deployment timeout a.k.a. I get a FatalCommissioningException? == - -I get a {{{FatalCommissioningException}}}: - -{{{ -org.apache.avalon.composition.model.FatalCommissioningException: target: -[[/application/main-entry]] did not respond within the timeout period: -[1000] and failed to respond to an interrupt. -}}} - -or the like. {{{application/main-entry}}} and {{{1000}}} may vary from configuration to configuration. - -The timeout may be set in a merlin.properties file. - -{{{ -merlin.deployment.timeout = 0 -}}} - -A value of 0 removes timeout. All other values set the timeout to milliseconds. - -See http://avalon.apache.org/merlin/merlin/kernel/properties.html for a description where this file may be located. - -Daniel Frey, 20040325 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
