FYI: New Continuum instance

2007-08-17 Thread Grzegorz Kossakowski

Hi,

With help of Brett Porter I'm just in process of creating new Continuum setup for Cocoon at a new 
Continuum instance[1]. Brett told me that old one when we used to have Cocoon built is going to be 
shut down soon.


The advantages of a new instance are significant:
1. It's Continuum 1.1 that supports build profiles and one of already set up profile is Java 1.4 
that we can use so Cocoon is checked against compatibility with Java 1.4. Nice, don't you think? :-)
2. It's less bloated. Old Continuum was a real mess and as Brett told me it had almost no 
maintainers. This may change.

3. It's considerably faster and has new neat options like projects group.
4. Broken notifications should work now.

For the beginning I'll try to replicate old setup and if it works we can discuss if we want 
something to adjust. If you want to be added to project group developers (so you can edit settings 
for Cocoon) just register at Continuum and give me your username.


[1] http://vmbuild1.apache.org/continuum/

--
Grzegorz Kossakowski
http://reflectingonthevicissitudes.wordpress.com/
*** My Internet Service Provider breaks my internet connection
***
*** incessantly so I'll not be able to respond to e-mails 
***
*** regularly and my work will be somehow irregular.  
***
*** I'm already trying to switch ISP but it will take handful amount of time. 
***


Re: Pipeline components and Object Model issues

2007-08-17 Thread Grzegorz Kossakowski

Joerg Heinicke pisze:

On 14.08.2007 12:26 Uhr, Grzegorz Kossakowski wrote:

The problem is that Object Model is a signleton object (more 
precisely, with call scope defined in cocoon-servlet-service-impl)


So the problem is not with internal pipelines at all since they are 
scoped anyway? Or does this apply only for servlet service? Do other 
internal protocol still exist at all?


Yes, it's not problem with internal pipelines (internal requests made by servlet:) because they are 
scoped. No,  it's general problem and if servlet service is not used this problem emerges in 
internal requests, also (because scope is not used).


What internal proctol do you have in mind? A cocoon: I guess, so it still exists and it's main 
reason for keeping complicated environment handling and complicated code of sitemap's treeprocessor. 
Since servlet: protocol replaces (or is going to replace) all functionality of cocoon: we need to 
start thinking about deprecating it in a future.


To elaborate on it further, the situation is similar to the situation 
when thread-unsafe component is used in two threads at the same time.


This comparison does not really apply. You don't get corrupted state but 
some last-wins situation in case of conflicts. If two components in a 
pipeline have the same parameter the last one added wins. So the result 
is actually predictable - but unwanted of course.


Not entirely true. ObjectModel can be modified during component's execution at random times, really. 
It happens all the time in template generator where Object Model is passed almost everywhere and it 
depends on incoming SAX events if OM will be modified. So it's predictable during setup phase but 
not during execution.


This fully establish analogy between thread-unsafe components and OM, IMO.

I wonder if that scope makes much sense. It's a 1:1-relationship to 
the component anyway. What we need is only a wrapper that delegates 
read-only access to parent object model in case the child could not 
serve the requested value. Maybe we just talk about the same ...


Yes, we talk about the same but I want OM to be casual Spring bean but scoped properly. This way we 
get necessary wrapper but in transparent way so component's can take advantage of Dependency 
Injection when it comes to OM.


I could agree with you that introduction of scope does not make sense in 1:1-relationship but since 
component can make internal requests and if we want to provide some environment forwarding/sharing 
(see COCOON-2050[1] and [RT] The big picture of Servlet Service Framework e-mail[2] for examples 
where it could be needed) we will need to obtain OM and we should get exactly the same OM component 
making a request have.


Actually this whole problem reminds me of session attributes in portlet 
environment. A portlet's session attributes work exactly like written 
above - but all are stored within the global HTTP session though by 
prefixing the session attribute names with a portlet-unique string. And 
I wonder how fast we will observe another requirement: I know that I 
might break something but I WANT make this attribute globally 
available. This concept is known in portlet session attributes. You can 
enforce writing an attribute straight to the global session. See the 
corresponding methods on PortletSession [1] (actually they call it 
scope as well).


From my purist point of view I would say: just don't even think about it! ;)
However, I know that from time to time we have bend the rules and the solution already exists with 
current design. OM can be extended by implementing ObjectModelProvider interface so some entries are 
added to OM during it's creation. Now you can reference to such bean (that should have prototype 
scope for example) in pipeline component and modify it directly bypassing all OM mechanisms. This 
way you lost all protection but you are not limited by any scopes and so on.


But I'll repeat: don't do this and if you insist on doing it don't be surprised if something does 
not work.


How is the object model injected into such a sitemap component? Still 
via setup()?


As I said earlier, OM is just a Spring bean so it's going to be injected using 
Spring's mechanisms.

--
Grzegorz Kossakowski
http://reflectingonthevicissitudes.wordpress.com/
*** My Internet Service Provider breaks my internet connection
***
*** incessantly so I'll not be able to respond to e-mails 
***
*** regularly and my work will be somehow irregular.  
***
*** I'm already trying to switch ISP but it will take handful amount of time. 
***


Re: FYI: New Continuum instance

2007-08-17 Thread Grzegorz Kossakowski

Grzegorz Kossakowski pisze:

3. It's considerably faster and has new neat options like projects group.


Actually it's going to be upgraded soon so you may experience something opposite - slowness and 
instability but it's temporary.


--
Grzegorz Kossakowski
http://reflectingonthevicissitudes.wordpress.com/
*** My Internet Service Provider breaks my internet connection
***
*** incessantly so I'll not be able to respond to e-mails 
***
*** regularly and my work will be somehow irregular.  
***
*** I'm already trying to switch ISP but it will take handful amount of time. 
***


Re: Cocoon Spring configurator

2007-08-17 Thread Carsten Ziegeler
Joerg Heinicke wrote:
 Carsten Ziegeler cziegeler at apache.org writes:
 
 Carsten, when I recommended the bean map today [1] I wondered how it actually
 works. The documentation talks about jar drop-in [2] which does not seem to be
 the full truth. Please correct me if I'm wrong ...
:)

 
 The BeanMap looks for all beans of a particular type. Therefore the beans 
 needs
 to be registered in the application context.
Yes, that's true - so you can use the bean map standalone without
using anything else from the configurator.

 So far so good, but here I think
 the drop-in fails. Even if the jar includes the configuration the bean does 
 not
 get added automatically to the application context. Only the other parts of
 Cocoon Spring configurator enable this functionality. (If that's correct this
 should better be added to the BeanMap documentation.) 
Yes, that's true - the bean map is just a map of some registered beans.
Together with the other functionality of the spring configurator you get
 the automatic configuration stuff - and if such a configuration
contains beans for the map, they are added to the map of course.
Yepp, I think this needs some clarifications in the docs.

 Which class exactly does
 this? And how much stuff is hard-coded in it? You don't want to have paths 
 like
 /META-INF/cocoon/spring when using Cocoon Spring configurator independently 
 from
 Cocoon. It's probably not that hard to change but we should do it before
 propagating it :)
There are constants defined in
org.apache.cocoon.spring.configurator.impl.Constants.

So changing this is very simple. The whole loading is done through own
xml elements (the settings element). Most classes in
org.apache.cocoon.spring.configurator.impl deals with this stuff.

Carsten

-- 
Carsten Ziegeler
[EMAIL PROTECTED]


Re: [jira] Commented: (COCOON-2110) Evaluate expressions defined in cocooon-expression-language-api in Sitemap engine

2007-08-17 Thread Daniel Fagerstrom

Grzegorz Kossakowski skrev:

Daniel Fagerstrom pisze:

Grzegorz Kossakowski skrev:

Vadim Gritsenko (JIRA) pisze:

Actually, such syntax is supported[1] in our code for almost two 
years now.


The new syntax is supported but it is plugable and the default 
settings is using the old syntax. I didn't find any detailed design 
discussion about the design in the archives, the idea is suggested in 
http://marc.info/?l=xml-cocoon-devm=110651769909483w=2.


For the actual implementation, the parsing of a string with embedded 
expression calls (a string template) is plugable using the interface 
o.a.c.template.expression.StringTemplateParser. The current syntax is 
handles by JXTGStringTemplateParser and the new one by 
DefaultStringTemplateParser. The choice of string template parser is 
done in 
http://svn.apache.org/repos/asf/cocoon/trunk/blocks/cocoon-template/cocoon-template-impl/src/main/resources/META-INF/cocoon/avalon/cocoon-template.xconf. 



The whole string template mechanism (the package 
o.a.c.template.expression) could preferably be reused in the sitemap 
as well. To do this the package needs to be moved to the core 
(cocoon-expression-language) and refactored a little bit, the 
dependencies on o.a.c.template.environment.ParsingContext and 
o.a.c.template.environment.ErrorHolder needs to be removed and a more 
appropriate package name should be found.


...
To sum up, new syntax has been introduced during refactoring of 
Template block and since community already voted to switch to 
refactored code it also voted for new syntax.


The vote was not about removing the current syntax. It was about 
switching default implementation of the JXTG concept.


Speaking about myself I prefer much more language prefixes and I 
think we should go for it. The question that we need to answer is if 
we want to support #{} syntax in sitemap? Since it was never there I 
don't think it makes sense to do so.


Using the string template mechanism in the sitemap we get the current 
JXTG syntax for free, but I would advice users to not use it.


Daniel, I implemented what you proposed

Good.
but not committed yet due to regression it introduces. Basically, I 
implemented handling of sitemap expressions in 
LegacyStringTemplateParser (JXTGStringTemplateParser in the past) and 
it's seems to work ok with basic tests. However, 
LegacyStringTemplateParser is also used in Template block so, as 
result of my changes, one will be able to evaluate sitemap expressions 
in templates. It's not that bad but it introduces small regression.
One of the points with plugability is that you can have several 
implementations of the interface ;)


I suggest that you leave LegacyStringTemplateParser as it was before and 
put your new code in a LegacySitemapStringTemplateParser that only is 
used in the sitemap. Then you of course need to see if you get any 
regression in the sitemap.


But I wonder why you want to combine the JXTG and sitemap template 
syntax at all, why not just people chose between the old syntax and the 
new unified syntax. I suggest that you start a new less technical thread 
about how you want to have the expression syntax in the sitemap and the 
templates, so that the rest of the community can have opinions.
With old implementation of JXTGStringTemplateParser it was possible to 
escape { character but not mandatory. With new implementation it's 
mandatory because it will be parsed as sitemap expression otherwise. I 
tried to search for all occurrences of such unescaped { with this 
command:
find | xargs grep http://apache.org/cocoon/templates/jx/1.0; -l | 
xargs grep -E \?xml -l | xargs grep -E [^#\$][{] -l | grep -E 
--invert-match .svn|target


and got following results:
./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/dreamteam/content/teamTemplate.jx 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/file_explorer_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/inplace_edit_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/datasource_chooser_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/dynamicrepeater_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/sampletree_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/xmlresult_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/carselector_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/multipage_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/xdoceditor_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/tasktree_template.xml 

./blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/dynamicrepeater_dojo_template.xml 


Re: [jira] Commented: (COCOON-2110) Evaluate expressions defined in cocooon-expression-language-api in Sitemap engine

2007-08-17 Thread Grzegorz Kossakowski

Daniel Fagerstrom pisze:
One of the points with plugability is that you can have several 
implementations of the interface ;)


;)

I suggest that you leave LegacyStringTemplateParser as it was before and 
put your new code in a LegacySitemapStringTemplateParser that only is 
used in the sitemap. Then you of course need to see if you get any 
regression in the sitemap.


But I wonder why you want to combine the JXTG and sitemap template 
syntax at all, why not just people chose between the old syntax and the 
new unified syntax. I suggest that you start a new less technical thread 
about how you want to have the expression syntax in the sitemap and the 
templates, so that the rest of the community can have opinions.


After sleeping with this problem in mind I'm starting to wonder, too. ;-)
It's good that nobody have seen this code that made gluing possible, it's 
nightmare...

No, not without a detailed evaluation of alternative solutions, a cost 
and benefit analyze of the change and a vote.


Ok, enough points to distance me from introducing back incompatibility :)

Are you starting to see some pattern in my responses to your suggestions 
about create back incompatibility ;)


There is another one: When I start to talk about back incompatibility it's a sign I'm stuck and need 
to talk with someone more experienced to get an advice. ;)


--
Grzegorz Kossakowski
http://reflectingonthevicissitudes.wordpress.com/
*** My Internet Service Provider breaks my internet connection
***
*** incessantly so I'll not be able to respond to e-mails 
***
*** regularly and my work will be somehow irregular.  
***
*** I'm already trying to switch ISP but it will take handful amount of time. 
***


[HEADS-UP] Changes to Sitemap's TreeProcessor

2007-08-17 Thread Grzegorz Kossakowski

Hello,

I've applied changes in r567057 that were discussed here[1]. Briefly speaking, this change allow us 
to switch to new unified expressions by changing one line of configuration in this[2] file:


  property name=stringTemplateParser 
ref=org.apache.cocoon.el.parsing.StringTemplateParser/legacySitemap/


If you change it to:

  property name=stringTemplateParser 
ref=org.apache.cocoon.el.parsing.StringTemplateParser/default/


You will immediately get a possibility to use new expressions in sitemap, like:

  map:transform type=xslt src=style.xsl
!-- here we assume that default EL is JXPath --
map:parameters name=param1 value={$cocoon/request/parameters/param1}/
  /map:transform

While that is neat it could introduce very unexpected problems and bugs. I've touched very core 
functionality of TreeProcessor and it was first, brave attempt to introduce Spring to TreeProcessor. :-)


I tested my changes and everything seems to work as before but I don't understand all constructs in 
TreeProcessor so some obscure problems may arise.


Please test new changes with your applications and report problems so we can 
fix them ASAP.

[1] http://article.gmane.org/gmane.text.xml.cocoon.devel/74529
[2] 
http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/src/main/resources/META-INF/cocoon/spring/StringTemplateParserVariableResolver.xml


--
Grzegorz Kossakowski
http://reflectingonthevicissitudes.wordpress.com/
*** My Internet Service Provider breaks my internet connection
***
*** incessantly so I'll not be able to respond to e-mails 
***
*** regularly and my work will be somehow irregular.  
***
*** I'm already trying to switch ISP but it will take handful amount of time. 
***


New expressions' syntax

2007-08-17 Thread Grzegorz Kossakowski

Hi,

I would like to discuss a new syntax for expressions or more precisely for string templates that are 
going to be default in Cocoon.


In order to clarify things I'll provide vocabulary that corresponds to current 
implementation.

  Expression
Expressions are just strings that can be interpreted in certain language 
like Jexl or JXPath.
Expressions can contain prefix that gives hint how to interpret them. Some 
examples:
  * jxpath:$cocoon/request - JXPath
  * bean.HelperMethod(sth) - Jexl
  * ${bean1.bean2} - this is _not_ an expression (more below)

  String template
String templates are strings that contain both expressions (wrapped in some 
special characters)
and literals mixed up. Examples:
  * This is literal, #{$cocoon/request}. - literal and JXPath expression 
wrapped in old way
  * ${bean1.bean2} - only Jexl expression wrapped in old way
  * Literal1 {request-param:param} Lieteral2 - two literals and sitemap 
expression wrapped using
   {} characters.

In this mail I would like to discuss these wrapping characters for string templates we are going to 
have by default at least in Template and Sitemap but very likely that also in Forms and other places 
where expressions can be useful.


Currently we use {} to wrap sitemap expressions. We use #{} to wrap JXPath, ${} to wrap Jexl, @{} to 
wrap Javascript expressions, all in Template only.


One of my big goals is to make you think only about one string template, one wrapping chars and 
whatever you like number of expression languages you like everywhere in Cocoon. When achieving this 
goal I must keep back-compatibility in mind all the time as Daniel is patiently reminding me.


I think that I have not introduced any back-incompatibility so far even I wanted several times. I 
guess it's the hardest time because I'm I want to:

  a) allow people migrate to new expressions both in Template and Sitemap 
smoothly
  b) stay 100% back-compatible with old code behaviour while implementing new ways of expression 
evaluation and most importantly Object Model construction

  c) avoid confusion about what's new and what's old

This leads us to small but very important question: how we wrap new expressions? If I'm not wrong, 
current preference  has been to wrap new expressions in {}, Daniel confirms[1] this view.


My own opinion is that plain {} are ok in sitemap but will not work well in general. If choose {} as 
wrapping characters everything put between this characters will be considered as expression. If you 
additionally remember that all strings inside elements are treated as String templates you may start 
to be warned. Take a look this[2] file's snippet:


  style type=text/css
#files { border-collapse: collapse; border-left: dotted black 1px; }
#files td { padding: 0.1em; border-bottom: dotted black 1px; }
.selected { background: #D0D0D0; }
  /style

It's a content of jx template but obviously we don't want generator/transformer to interpret this 
CSS declarations as Cocoon expressions! We would need to escape {} wrapping characters:


  style type=text/css
#files \{ border-collapse: collapse; border-left: dotted black 1px; \}
#files td \{ padding: 0.1em; border-bottom: dotted black 1px; \}
.selected \{ background: #D0D0D0; \}
  /style

It's ugly, don't you think?

Next choice could be to use ${}. The problem with this characters is that they are already used in 
Template and if we don't pick Jexl language as default it will break current templates not to 
mention confusion it would cause. We could come up with %{}, !{} or whatever is not used yet. 
Everyone's keyboard has lot of remaining symbols waiting for use but I wonder if we really want/need 
new wrappers.


I'm stuck. Thoughts?

[1] http://marc.info/?l=xml-cocoon-devm=118703810504930w=2
[2] 
http://svn.apache.org/repos/asf/cocoon/trunk/blocks/cocoon-forms/cocoon-forms-sample/src/main/resources/COB-INF/forms/file_explorer_template.xml


--
Grzegorz Kossakowski
http://reflectingonthevicissitudes.wordpress.com/


[continuum] BUILD SUCCESSFUL: Cocoon Forms Block Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=946projectId=60

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:42:01 -0700
 Finished at: Fri 17 Aug 2007 12:42:40 -0700
 Total time: 38s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 10
Failures: 0
Total time: 279


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Forms Block Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/60/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/60/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/60/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/60/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] snapshot org.apache.cocoon:cocoon-flowscript-impl:1.0.0-RC2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] [compiler:compile]
[INFO] Compiling 399 source files to 
/home/continuum/data/working-directory/60/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 11 source files to 
/home/continuum/data/working-directory/60/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/60/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.forms.datatype.convertor.EnumConvertorTestCase
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.037 sec
Running org.apache.cocoon.forms.datatype.convertor.EnumConvertorBuilderTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.22 sec
Running 
org.apache.cocoon.forms.datatype.validationruleimpl.EmailValidationRuleTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 sec

Results :
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/60/target/cocoon-forms-impl-1.0.0-RC1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/60/target/cocoon-forms-impl-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-forms-impl/1.0.0-RC1-SNAPSHOT/cocoon-forms-impl-1.0.0-RC1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 33 seconds
[INFO] Finished at: Fri Aug 17 12:42:40 PDT 2007
[INFO] Final Memory: 21M/60M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Apples Block Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=943projectId=55

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:40:40 -0700
 Finished at: Fri 17 Aug 2007 12:40:56 -0700
 Total time: 15s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Apples Block Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/55/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/55/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/55/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/55/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 10 source files to 
/home/continuum/data/working-directory/55/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/55/target/cocoon-apples-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/55/target/cocoon-apples-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-apples-impl/1.0.0-RC2-SNAPSHOT/cocoon-apples-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 13 seconds
[INFO] Finished at: Fri Aug 17 12:40:56 PDT 2007
[INFO] Final Memory: 20M/36M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Additional Sample Block

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=940projectId=57

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:38:48 -0700
 Finished at: Fri 17 Aug 2007 12:39:06 -0700
 Total time: 18s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Additional Sample Block
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/57/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/57/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/57/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/57/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/57/target/cocoon-core-additional-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/57/target/cocoon-core-additional-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-core-additional-sample/1.0.0-SNAPSHOT/cocoon-core-additional-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 16 seconds
[INFO] Finished at: Fri Aug 17 12:39:06 PDT 2007
[INFO] Final Memory: 20M/36M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Ajax Block Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=941projectId=53

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:39:21 -0700
 Finished at: Fri 17 Aug 2007 12:39:55 -0700
 Total time: 34s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Ajax Block Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/53/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/53/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/53/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/53/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [antrun:run {execution: default}]
[INFO] Executing tasks

unzip-dojo:
   [unzip] Expanding: 
/home/continuum/data/working-directory/53/src/main/resources/org/apache/cocoon/dojo/resources/dojo-0.4.3-ajax.zip
 into /home/continuum/data/working-directory/53/target/dojo-temp
  [delete] Deleting 1 files from 
/home/continuum/data/working-directory/53/target/classes/org/apache/cocoon/dojo/resources
[copy] Copying 1475 files to 
/home/continuum/data/working-directory/53/target/classes/org/apache/cocoon/dojo/resources
[echo] copied
[INFO] Executed tasks
[INFO] [compiler:compile]
[INFO] Compiling 5 source files to 
/home/continuum/data/working-directory/53/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/53/target/cocoon-ajax-impl-1.0.0-RC1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/53/target/cocoon-ajax-impl-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-ajax-impl/1.0.0-RC1-SNAPSHOT/cocoon-ajax-impl-1.0.0-RC1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 32 seconds
[INFO] Finished at: Fri Aug 17 12:39:55 PDT 2007
[INFO] Final Memory: 22M/40M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Ajax Block Sample

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=942projectId=54

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:40:11 -0700
 Finished at: Fri 17 Aug 2007 12:40:28 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Ajax Block Sample
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/54/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/54/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/54/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/54/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] snapshot org.apache.cocoon:cocoon-ajax-impl:1.0.0-RC1-SNAPSHOT: checking 
for updates from apache.snapshots
[INFO] snapshot org.apache.cocoon:cocoon-samples-style-default:1.0.0-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] snapshot org.apache.cocoon:cocoon-template-impl:1.0.0-RC2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/54/target/cocoon-ajax-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/54/target/cocoon-ajax-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-ajax-sample/1.0.0-SNAPSHOT/cocoon-ajax-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Aug 17 12:40:27 PDT 2007
[INFO] Final Memory: 23M/41M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Main Core Sample Block

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=944projectId=58

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:41:05 -0700
 Finished at: Fri 17 Aug 2007 12:41:24 -0700
 Total time: 19s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Main Core Sample Block
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/58/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/58/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/58/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/58/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 2 source files to 
/home/continuum/data/working-directory/58/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/58/target/cocoon-core-main-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/58/target/cocoon-core-main-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-core-main-sample/1.0.0-SNAPSHOT/cocoon-core-main-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 16 seconds
[INFO] Finished at: Fri Aug 17 12:41:24 PDT 2007
[INFO] Final Memory: 22M/41M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Apples Block Samples

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=947projectId=56

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 12:42:52 -0700
 Finished at: Fri 17 Aug 2007 12:43:12 -0700
 Total time: 19s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Apples Block Samples
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/56/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/56/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/56/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/56/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] snapshot org.apache.cocoon:cocoon-apples-impl:1.0.0-RC2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] snapshot org.apache.cocoon:cocoon-core-main-sample:1.0.0-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] snapshot org.apache.cocoon:cocoon-forms-impl:1.0.0-RC1-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] [compiler:compile]
[INFO] Compiling 4 source files to 
/home/continuum/data/working-directory/56/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/56/target/cocoon-apples-sample.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/56/target/cocoon-apples-sample.jar to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-apples-sample/1.0.0-SNAPSHOT/cocoon-apples-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 17 seconds
[INFO] Finished at: Fri Aug 17 12:43:12 PDT 2007
[INFO] Final Memory: 26M/51M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Tools [modules]

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=952projectId=89

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:13:24 -0700
 Finished at: Fri 17 Aug 2007 13:14:03 -0700
 Total time: 38s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 4
Failures: 0
Total time: 199


Output:

[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Cocoon Tools [modules]

[INFO]   Cocoon 2.2 Archetype: Block
[INFO]   Cocoon 2.2 Archetype: Block (plain)
[INFO]   Cocoon 2.2 Archetype: Web Application
[INFO]   Cocoon Maven Reports
[INFO]   Cocoon Reloading ClassLoader - Spring reloader
[INFO]   Cocoon Reloading ClassLoader - Webapp Wrapper
[INFO]   Cocoon Maven 2 Plugin
[INFO] 

[INFO] Building Cocoon Tools [modules]
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/89/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/89/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [site:attach-descriptor]
[INFO] [install:install]
[INFO] Installing /home/continuum/data/working-directory/89/pom.xml to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-tools-modules/5-SNAPSHOT/cocoon-tools-modules-5-SNAPSHOT.pom
[INFO] 

[INFO] Building Cocoon 2.2 Archetype: Block
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block/target/test-classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block/target/cocoon-22-archetype-block-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block/target/cocoon-22-archetype-block-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-22-archetype-block/1.0.0-RC2-SNAPSHOT/cocoon-22-archetype-block-1.0.0-RC2-SNAPSHOT.jar
[INFO] 

[INFO] Building Cocoon 2.2 Archetype: Block (plain)
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block-plain/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/89/archetypes/cocoon-22-archetype-block-plain/target/classes
[INFO] 

[continuum] BUILD SUCCESSFUL: Cocoon 2.2 Archetype: Block

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=953projectId=90

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:14:12 -0700
 Finished at: Fri 17 Aug 2007 13:14:21 -0700
 Total time: 8s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon 2.2 Archetype: Block
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/90/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/90/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/90/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/90/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/90/target/cocoon-22-archetype-block-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/90/target/cocoon-22-archetype-block-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-22-archetype-block/1.0.0-RC2-SNAPSHOT/cocoon-22-archetype-block-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:14:20 PDT 2007
[INFO] Final Memory: 10M/19M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon 2.2 Archetype: Block (plain)

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=954projectId=91

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:14:32 -0700
 Finished at: Fri 17 Aug 2007 13:14:41 -0700
 Total time: 9s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon 2.2 Archetype: Block (plain)
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/91/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/91/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/91/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/91/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/91/target/cocoon-22-archetype-block-plain-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/91/target/cocoon-22-archetype-block-plain-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-22-archetype-block-plain/1.0.0-RC2-SNAPSHOT/cocoon-22-archetype-block-plain-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 7 seconds
[INFO] Finished at: Fri Aug 17 13:14:41 PDT 2007
[INFO] Final Memory: 10M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon 2.2 Archetype: Web Application

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=955projectId=92

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:14:49 -0700
 Finished at: Fri 17 Aug 2007 13:14:57 -0700
 Total time: 8s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon 2.2 Archetype: Web Application
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/92/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/92/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/92/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/92/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/92/target/cocoon-22-archetype-webapp-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/92/target/cocoon-22-archetype-webapp-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-22-archetype-webapp/1.0.0-RC2-SNAPSHOT/cocoon-22-archetype-webapp-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:14:57 PDT 2007
[INFO] Final Memory: 10M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Configuration API

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=957projectId=98

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:19:25 -0700
 Finished at: Fri 17 Aug 2007 13:19:34 -0700
 Total time: 9s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Configuration API
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/98/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/98/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/98/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/98/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 5 source files to 
/home/continuum/data/working-directory/98/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/98/target/cocoon-configuration-api-1.0.1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/98/target/cocoon-configuration-api-1.0.1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-configuration-api/1.0.1-SNAPSHOT/cocoon-configuration-api-1.0.1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:19:34 PDT 2007
[INFO] Final Memory: 11M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Spring Configurator

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=958projectId=99

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:19:43 -0700
 Finished at: Fri 17 Aug 2007 13:19:53 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Spring Configurator
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/99/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/99/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/99/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/99/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 22 source files to 
/home/continuum/data/working-directory/99/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/99/target/cocoon-spring-configurator-1.0.1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/99/target/cocoon-spring-configurator-1.0.1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-spring-configurator/1.0.1-SNAPSHOT/cocoon-spring-configurator-1.0.1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:19:53 PDT 2007
[INFO] Final Memory: 11M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Pipeline API

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=959projectId=73

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:20:03 -0700
 Finished at: Fri 17 Aug 2007 13:20:14 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 3
Failures: 0
Total time: 53


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Pipeline API
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/73/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/73/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/73/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/73/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 45 source files to 
/home/continuum/data/working-directory/73/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 1 source file to 
/home/continuum/data/working-directory/73/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/73/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.util.location.LocationTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.062 sec

Results :
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/73/target/cocoon-pipeline-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/73/target/cocoon-pipeline-api-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-pipeline-api/1.0.0-RC2-SNAPSHOT/cocoon-pipeline-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:20:14 PDT 2007
[INFO] Final Memory: 11M/22M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Util

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=960projectId=82

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:20:23 -0700
 Finished at: Fri 17 Aug 2007 13:20:34 -0700
 Total time: 11s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 195
Failures: 0
Total time: 256


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Util
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/82/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/82/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/82/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/82/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 24 source files to 
/home/continuum/data/working-directory/82/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 5 source files to 
/home/continuum/data/working-directory/82/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/82/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.util.test.MIMEUtilsTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec
Running org.apache.cocoon.util.WildcardMatcherHelperTestCase
Tests run: 40, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.11 sec
Running org.apache.cocoon.util.test.IOUtilsTestCase
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
Running org.apache.cocoon.util.test.NetUtilsTestCase
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 sec
Running org.apache.cocoon.util.test.DeprecationTestCase
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec

Results :
Tests run: 59, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/82/target/cocoon-util-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/82/target/cocoon-util-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-util/1.0.0-RC2-SNAPSHOT/cocoon-util-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 9 seconds
[INFO] Finished at: Fri Aug 17 13:20:34 PDT 2007
[INFO] Final Memory: 11M/25M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon XML API

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=961projectId=84

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:20:44 -0700
 Finished at: Fri 17 Aug 2007 13:20:53 -0700
 Total time: 9s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon XML API
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/84/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/84/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/84/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/84/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 2 source files to 
/home/continuum/data/working-directory/84/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/84/target/cocoon-xml-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/84/target/cocoon-xml-api-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-xml-api/1.0.0-RC2-SNAPSHOT/cocoon-xml-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:20:53 PDT 2007
[INFO] Final Memory: 11M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Pipeline Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=962projectId=74

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:21:02 -0700
 Finished at: Fri 17 Aug 2007 13:21:19 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 68
Failures: 0
Total time: 1857


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Pipeline Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/74/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/74/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/74/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/74/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 86 source files to 
/home/continuum/data/working-directory/74/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 9 source files to 
/home/continuum/data/working-directory/74/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/74/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.xml.SaxBufferTestCase
consuming: 476190.0 documents per second
parsed:12936.0 documents per second
recalling: 83.0 documents per second
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.01 sec
Running org.apache.cocoon.xml.dom.DOMBuilderStreamerTestCase
?xml version=1.0 encoding=UTF-8 standalone=no?root/
?xml version=1.0 encoding=UTF-8 standalone=no?!--abcd--root/
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.067 sec
Running 
org.apache.cocoon.components.sax.XMLByteStreamCompilerInterpreterTestCase
consuming: 33.0 documents per second
parsed: 14947.0 documents per second
recalling: 370370.0 documents per second
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.788 sec
Running org.apache.cocoon.xml.NamespacesTableTestCase
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
Running org.apache.cocoon.xml.dom.DOMBuilderTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec

Results :
Tests run: 21, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/74/target/cocoon-pipeline-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [jar:test-jar {execution: default}]
[INFO] Building jar: 
/home/continuum/data/working-directory/74/target/cocoon-pipeline-impl-1.0.0-RC2-SNAPSHOT-tests.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/74/target/cocoon-pipeline-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-pipeline-impl/1.0.0-RC2-SNAPSHOT/cocoon-pipeline-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] Installing 
/home/continuum/data/working-directory/74/target/cocoon-pipeline-impl-1.0.0-RC2-SNAPSHOT-tests.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-pipeline-impl/1.0.0-RC2-SNAPSHOT/cocoon-pipeline-impl-1.0.0-RC2-SNAPSHOT-tests.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 

[continuum] BUILD SUCCESSFUL: Cocoon XML Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=963projectId=85

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:21:27 -0700
 Finished at: Fri 17 Aug 2007 13:21:37 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon XML Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/85/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/85/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/85/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/85/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 4 source files to 
/home/continuum/data/working-directory/85/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/85/target/cocoon-xml-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/85/target/cocoon-xml-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-xml-impl/1.0.0-RC2-SNAPSHOT/cocoon-xml-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 7 seconds
[INFO] Finished at: Fri Aug 17 13:21:37 PDT 2007
[INFO] Final Memory: 11M/21M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Pipeline Components

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=964projectId=75

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:21:46 -0700
 Finished at: Fri 17 Aug 2007 13:22:03 -0700
 Total time: 17s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Pipeline Components
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/75/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/75/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/75/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/75/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 69 source files to 
/home/continuum/data/working-directory/75/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/75/target/surefire-reports

---
T E S T S
---
There are no tests to run.

Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/75/target/cocoon-pipeline-components-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/75/target/cocoon-pipeline-components-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-pipeline-components/1.0.0-RC2-SNAPSHOT/cocoon-pipeline-components-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Aug 17 13:22:02 PDT 2007
[INFO] Final Memory: 14M/29M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Sitemap API

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=965projectId=76

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:22:13 -0700
 Finished at: Fri 17 Aug 2007 13:22:24 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Sitemap API
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/76/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/76/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/76/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/76/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 29 source files to 
/home/continuum/data/working-directory/76/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/76/target/cocoon-sitemap-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/76/target/cocoon-sitemap-api-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-sitemap-api/1.0.0-RC2-SNAPSHOT/cocoon-sitemap-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:22:24 PDT 2007
[INFO] Final Memory: 12M/22M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Expression Language API

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=966projectId=87

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:22:33 -0700
 Finished at: Fri 17 Aug 2007 13:22:42 -0700
 Total time: 9s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Expression Language API
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/87/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/87/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/87/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/87/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 8 source files to 
/home/continuum/data/working-directory/87/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/87/target/cocoon-expression-language-api-1.0.0-M1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/87/target/cocoon-expression-language-api-1.0.0-M1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-expression-language-api/1.0.0-M1-SNAPSHOT/cocoon-expression-language-api-1.0.0-M1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 7 seconds
[INFO] Finished at: Fri Aug 17 13:22:42 PDT 2007
[INFO] Final Memory: 11M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Expression Language Implementation.

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=967projectId=88

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:22:51 -0700
 Finished at: Fri 17 Aug 2007 13:23:05 -0700
 Total time: 14s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 44
Failures: 0
Total time: 532


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Expression Language Implementation.
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/88/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/88/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/88/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/88/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 20 source files to 
/home/continuum/data/working-directory/88/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 5 source files to 
/home/continuum/data/working-directory/88/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/88/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.components.expression.jexl.JexlTestCase
log4j:WARN No appenders could be found for logger 
(org.apache.commons.jexl.ExpressionFactory).
log4j:WARN Please initialize the log4j system properly.
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.23 sec
Running org.apache.cocoon.components.expression.jxpath.JXPathTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.082 sec
Running org.apache.cocoon.components.expression.javascript.JavaScriptTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.205 sec
Running org.apache.cocoon.components.expression.DefaultExpressionFactoryTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
Running org.apache.cocoon.objectmodel.ObjectModelImplTestCase
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec

Results :
Tests run: 20, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/88/target/cocoon-expression-language-impl-1.0.0-M1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/88/target/cocoon-expression-language-impl-1.0.0-M1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-expression-language-impl/1.0.0-M1-SNAPSHOT/cocoon-expression-language-impl-1.0.0-M1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 12 seconds
[INFO] Finished at: Fri Aug 17 13:23:05 PDT 2007
[INFO] Final Memory: 14M/27M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Thread API

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=968projectId=80

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:23:15 -0700
 Finished at: Fri 17 Aug 2007 13:23:24 -0700
 Total time: 9s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Thread API
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/80/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/80/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/80/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/80/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 4 source files to 
/home/continuum/data/working-directory/80/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/80/target/cocoon-thread-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/80/target/cocoon-thread-api-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-thread-api/1.0.0-RC2-SNAPSHOT/cocoon-thread-api-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:23:24 PDT 2007
[INFO] Final Memory: 11M/20M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Sitemap Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=969projectId=77

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:23:33 -0700
 Finished at: Fri 17 Aug 2007 13:23:54 -0700
 Total time: 21s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 2
Failures: 0
Total time: 1513


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Sitemap Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/77/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/77/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/77/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/77/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 181 source files to 
/home/continuum/data/working-directory/77/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 11 source files to 
/home/continuum/data/working-directory/77/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/77/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.environment.FOMTestCase
log4j:WARN No appenders could be found for logger 
(org.springframework.util.ClassUtils).
log4j:WARN Please initialize the log4j system properly.
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.521 sec

Results :
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/77/target/cocoon-sitemap-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [jar:test-jar {execution: default}]
[INFO] Building jar: 
/home/continuum/data/working-directory/77/target/cocoon-sitemap-impl-1.0.0-RC2-SNAPSHOT-tests.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/77/target/cocoon-sitemap-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-sitemap-impl/1.0.0-RC2-SNAPSHOT/cocoon-sitemap-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] Installing 
/home/continuum/data/working-directory/77/target/cocoon-sitemap-impl-1.0.0-RC2-SNAPSHOT-tests.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-sitemap-impl/1.0.0-RC2-SNAPSHOT/cocoon-sitemap-impl-1.0.0-RC2-SNAPSHOT-tests.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 19 seconds
[INFO] Finished at: Fri Aug 17 13:23:54 PDT 2007
[INFO] Final Memory: 15M/40M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Sitemap Components

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=970projectId=78

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:24:02 -0700
 Finished at: Fri 17 Aug 2007 13:24:19 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Sitemap Components
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/78/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/78/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/78/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/78/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 107 source files to 
/home/continuum/data/working-directory/78/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/78/target/surefire-reports

---
T E S T S
---
There are no tests to run.

Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/78/target/cocoon-sitemap-components-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/78/target/cocoon-sitemap-components-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-sitemap-components/1.0.0-RC2-SNAPSHOT/cocoon-sitemap-components-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Aug 17 13:24:19 PDT 2007
[INFO] Final Memory: 18M/32M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon XML Resolver

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=971projectId=86

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:24:26 -0700
 Finished at: Fri 17 Aug 2007 13:24:37 -0700
 Total time: 11s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon XML Resolver
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/86/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/86/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/86/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/86/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 1 source file to 
/home/continuum/data/working-directory/86/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/86/target/cocoon-xml-resolver-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/86/target/cocoon-xml-resolver-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-xml-resolver/1.0.0-RC2-SNAPSHOT/cocoon-xml-resolver-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:24:37 PDT 2007
[INFO] Final Memory: 13M/23M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Store Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=972projectId=79

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:24:48 -0700
 Finished at: Fri 17 Aug 2007 13:24:59 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Store Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/79/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/79/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/79/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/79/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 7 source files to 
/home/continuum/data/working-directory/79/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/79/target/cocoon-store-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/79/target/cocoon-store-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-store-impl/1.0.0-RC2-SNAPSHOT/cocoon-store-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:24:58 PDT 2007
[INFO] Final Memory: 12M/23M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Thread Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=973projectId=81

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:25:07 -0700
 Finished at: Fri 17 Aug 2007 13:25:20 -0700
 Total time: 12s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 32
Failures: 0
Total time: 805


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Thread Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/81/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/81/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/81/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/81/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 7 source files to 
/home/continuum/data/working-directory/81/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 4 source files to 
/home/continuum/data/working-directory/81/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/81/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.components.thread.DefaultThreadFactoryTestCase
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.04 sec
Running org.apache.cocoon.components.thread.DefaultThreadPoolTestCase
log4j:WARN No appenders could be found for logger 
(org.apache.cocoon.components.thread.DefaultThreadPool).
log4j:WARN Please initialize the log4j system properly.
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.768 sec
Running org.apache.cocoon.components.thread.DefaultRunnableManagerTestCase
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.035 sec

Results :
Tests run: 19, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/81/target/cocoon-thread-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/81/target/cocoon-thread-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-thread-impl/1.0.0-RC2-SNAPSHOT/cocoon-thread-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 10 seconds
[INFO] Finished at: Fri Aug 17 13:25:20 PDT 2007
[INFO] Final Memory: 12M/22M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Servlet Service Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=976projectId=101

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:26:49 -0700
 Finished at: Fri 17 Aug 2007 13:27:01 -0700
 Total time: 11s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Servlet Service Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/101/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/101/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/101/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/101/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 25 source files to 
/home/continuum/data/working-directory/101/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/101/target/cocoon-servlet-service-impl-1.0.0-RC1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/101/target/cocoon-servlet-service-impl-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-servlet-service-impl/1.0.0-RC1-SNAPSHOT/cocoon-servlet-service-impl-1.0.0-RC1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 9 seconds
[INFO] Finished at: Fri Aug 17 13:27:00 PDT 2007
[INFO] Final Memory: 11M/24M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Linkrewriter Block Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=977projectId=62

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:27:09 -0700
 Finished at: Fri 17 Aug 2007 13:27:25 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Linkrewriter Block Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/62/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/62/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/62/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/62/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 4 source files to 
/home/continuum/data/working-directory/62/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/62/target/cocoon-linkrewriter-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/62/target/cocoon-linkrewriter-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-linkrewriter-impl/1.0.0-RC2-SNAPSHOT/cocoon-linkrewriter-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Aug 17 13:27:24 PDT 2007
[INFO] Final Memory: 20M/37M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Servlet Service Components

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=978projectId=100

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:27:34 -0700
 Finished at: Fri 17 Aug 2007 13:27:51 -0700
 Total time: 17s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Servlet Service Components
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/100/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/100/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/100/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/100/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 15 source files to 
/home/continuum/data/working-directory/100/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/100/target/cocoon-servlet-service-components-1.0.0-RC1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/100/target/cocoon-servlet-service-components-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-servlet-service-components/1.0.0-RC1-SNAPSHOT/cocoon-servlet-service-components-1.0.0-RC1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 15 seconds
[INFO] Finished at: Fri Aug 17 13:27:51 PDT 2007
[INFO] Final Memory: 21M/38M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Template Framework Block Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=980projectId=64

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:28:42 -0700
 Finished at: Fri 17 Aug 2007 13:29:12 -0700
 Total time: 29s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 22
Failures: 0
Total time: 6587


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Template Framework Block Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/64/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/64/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/64/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/64/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 71 source files to 
/home/continuum/data/working-directory/64/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 2 source files to 
/home/continuum/data/working-directory/64/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/64/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.components.accessor.AccessorTestCase
log4j:WARN No appenders could be found for logger 
(org.springframework.util.ClassUtils).
log4j:WARN Please initialize the log4j system properly.
[DEBUG] XMLizer: Default parser is 'org.apache.excalibur.xml.sax.SAXParser'.
[DEBUG] SourceResolver: Using base URL: 
file:/home/continuum/data/working-directory/64/
[DEBUG] XMLizer: Default parser is 'org.apache.excalibur.xml.sax.SAXParser'.
[DEBUG] SourceResolver: Using base URL: 
file:/home/continuum/data/working-directory/64/
[DEBUG] XMLizer: Default parser is 'org.apache.excalibur.xml.sax.SAXParser'.
[DEBUG] SourceResolver: Using base URL: 
file:/home/continuum/data/working-directory/64/
[DEBUG] XMLizer: Default parser is 'org.apache.excalibur.xml.sax.SAXParser'.
[DEBUG] SourceResolver: Using base URL: 
file:/home/continuum/data/working-directory/64/
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.681 sec
Running org.apache.cocoon.template.jxtg.JXTemplateGeneratorTestCase
[DEBUG] XMLizer: Default parser is 'org.apache.excalibur.xml.sax.SAXParser'.
[DEBUG] SourceResolver: Using base URL: 
file:/home/continuum/data/working-directory/64/
[DEBUG] Resolving 
'resource://org/apache/cocoon/template/template-instructions.xml' with base 
'null' in context 'file:/home/continuum/data/working-directory/64/'
[DEBUG] Resolved to systemID : 
resource://org/apache/cocoon/template/template-instructions.xml
[DEBUG] Creating source object for 
resource://org/apache/cocoon/template/template-instructions.xml
[DEBUG] Releasing source object for 
resource://org/apache/cocoon/template/template-instructions.xml
[DEBUG] Resolving 'resource://org/apache/cocoon/template/jxtg/generate.xml' 
with base 'null' in context 'file:/home/continuum/data/working-directory/64/'
[DEBUG] Resolved to systemID : 
resource://org/apache/cocoon/template/jxtg/generate.xml
[DEBUG] Creating source object for 
resource://org/apache/cocoon/template/jxtg/generate.xml
[DEBUG] JaxpParser: validating: false, namespace-prefixes: false, reuse parser: 
true, stop on warning: true, stop on 

[continuum] BUILD SUCCESSFUL: Cocoon Samples Style Default Block

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=981projectId=66

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:29:20 -0700
 Finished at: Fri 17 Aug 2007 13:29:35 -0700
 Total time: 14s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Samples Style Default Block
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/66/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/66/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/66/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/66/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/66/target/cocoon-samples-style-default.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/66/target/cocoon-samples-style-default.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-samples-style-default/1.0.0-SNAPSHOT/cocoon-samples-style-default-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 12 seconds
[INFO] Finished at: Fri Aug 17 13:29:35 PDT 2007
[INFO] Final Memory: 20M/37M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Batik Block Implementation

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=988projectId=67

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:32:38 -0700
 Finished at: Fri 17 Aug 2007 13:32:56 -0700
 Total time: 17s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Batik Block Implementation
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/67/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/67/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/67/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/67/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 8 source files to 
/home/continuum/data/working-directory/67/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/67/target/surefire-reports

---
T E S T S
---
There are no tests to run.

Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/67/target/cocoon-batik-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/67/target/cocoon-batik-impl-1.0.0-RC2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-batik-impl/1.0.0-RC2-SNAPSHOT/cocoon-batik-impl-1.0.0-RC2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 15 seconds
[INFO] Finished at: Fri Aug 17 13:32:56 PDT 2007
[INFO] Final Memory: 21M/38M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Batik Block Samples

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=989projectId=68

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:33:04 -0700
 Finished at: Fri 17 Aug 2007 13:33:20 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Batik Block Samples
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/68/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/68/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/68/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/68/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/68/target/cocoon-batik-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/68/target/cocoon-batik-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-batik-sample/1.0.0-SNAPSHOT/cocoon-batik-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Aug 17 13:33:20 PDT 2007
[INFO] Final Memory: 23M/41M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Commons [modules]

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=990projectId=69

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:33:32 -0700
 Finished at: Fri 17 Aug 2007 13:33:43 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Cocoon Licenses

[INFO]   Cocoon Commons [modules]
[INFO] 

[INFO] Building Cocoon Licenses
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/69/legal/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/69/legal/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/69/legal/target/test-classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/69/legal/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/69/legal/target/cocoon-licenses-1.0.0-M2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/69/legal/target/cocoon-licenses-1.0.0-M2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-licenses/1.0.0-M2-SNAPSHOT/cocoon-licenses-1.0.0-M2-SNAPSHOT.jar
[INFO] 

[INFO] Building Cocoon Commons [modules]
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/69/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/69/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/69/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/69/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [site:attach-descriptor]
[INFO] [install:install]
[INFO] Installing /home/continuum/data/working-directory/69/pom.xml to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-commons-modules/2-SNAPSHOT/cocoon-commons-modules-2-SNAPSHOT.pom
[INFO] 
[INFO] 
[INFO] 

[INFO] Reactor Summary:
[INFO] 
[INFO] Cocoon Licenses ... SUCCESS [5.146s]
[INFO] Cocoon Commons [modules] .. SUCCESS [1.467s]
[INFO] 
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:33:43 PDT 2007
[INFO] Final Memory: 12M/23M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Distributions [modules]

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=991projectId=97

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:33:52 -0700
 Finished at: Fri 17 Aug 2007 13:34:00 -0700
 Total time: 8s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Distributions [modules]
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/97/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/97/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/97/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/97/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [site:attach-descriptor]
[INFO] [install:install]
[INFO] Installing /home/continuum/data/working-directory/97/pom.xml to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-dists-modules/2-SNAPSHOT/cocoon-dists-modules-2-SNAPSHOT.pom
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:34:00 PDT 2007
[INFO] Final Memory: 9M/18M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Forms Block Samples

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=992projectId=61

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:34:32 -0700
 Finished at: Fri 17 Aug 2007 13:34:57 -0700
 Total time: 25s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Forms Block Samples
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/61/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/61/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/61/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/61/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/61/target/cocoon-forms-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/61/target/cocoon-forms-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-forms-sample/1.0.0-SNAPSHOT/cocoon-forms-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 21 seconds
[INFO] Finished at: Fri Aug 17 13:34:57 PDT 2007
[INFO] Final Memory: 25M/44M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Licenses

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=993projectId=70

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:35:23 -0700
 Finished at: Fri 17 Aug 2007 13:35:34 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Licenses
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/70/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/70/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/70/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/70/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/70/target/cocoon-licenses-1.0.0-M2-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/70/target/cocoon-licenses-1.0.0-M2-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-licenses/1.0.0-M2-SNAPSHOT/cocoon-licenses-1.0.0-M2-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:35:34 PDT 2007
[INFO] Final Memory: 10M/18M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Linkrewriter Block Samples

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=994projectId=63

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:35:54 -0700
 Finished at: Fri 17 Aug 2007 13:36:12 -0700
 Total time: 18s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Linkrewriter Block Samples
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/63/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/63/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/63/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/63/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/63/target/cocoon-linkrewriter-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/63/target/cocoon-linkrewriter-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-linkrewriter-sample/1.0.0-SNAPSHOT/cocoon-linkrewriter-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 16 seconds
[INFO] Finished at: Fri Aug 17 13:36:12 PDT 2007
[INFO] Final Memory: 21M/39M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Reloading ClassLoader - Spring reloader

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=995projectId=96

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:36:28 -0700
 Finished at: Fri 17 Aug 2007 13:36:41 -0700
 Total time: 12s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Reloading ClassLoader - Spring reloader
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/96/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/96/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/96/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/96/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 2 source files to 
/home/continuum/data/working-directory/96/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/96/target/cocoon-rcl-spring-reloader-1.0.0-RC1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/96/target/cocoon-rcl-spring-reloader-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-rcl-spring-reloader/1.0.0-RC1-SNAPSHOT/cocoon-rcl-spring-reloader-1.0.0-RC1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 10 seconds
[INFO] Finished at: Fri Aug 17 13:36:41 PDT 2007
[INFO] Final Memory: 10M/19M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Reloading ClassLoader - Webapp Wrapper

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=996projectId=95

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:36:55 -0700
 Finished at: Fri 17 Aug 2007 13:37:06 -0700
 Total time: 10s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Reloading ClassLoader - Webapp Wrapper
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/95/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/95/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/95/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/95/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 8 source files to 
/home/continuum/data/working-directory/95/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/95/target/cocoon-rcl-webapp-wrapper-1.0.0-RC1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/95/target/cocoon-rcl-webapp-wrapper-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-rcl-webapp-wrapper/1.0.0-RC1-SNAPSHOT/cocoon-rcl-webapp-wrapper-1.0.0-RC1-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 8 seconds
[INFO] Finished at: Fri Aug 17 13:37:05 PDT 2007
[INFO] Final Memory: 11M/24M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Maven 2 Plugin

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=997projectId=94

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:37:19 -0700
 Finished at: Fri 17 Aug 2007 13:37:34 -0700
 Total time: 14s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 4
Failures: 0
Total time: 183


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Maven 2 Plugin
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/94/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/94/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/94/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/94/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [plugin:descriptor]
[WARNING] Goal prefix is: cocoon; Maven currently expects it to be cocoon
[INFO] Using 2 extractors.
[INFO] Applying extractor for language: java
[INFO] Extractor for language: java found 3 mojo descriptors.
[INFO] Applying extractor for language: bsh
[INFO] Extractor for language: bsh found 0 mojo descriptors.
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 23 source files to 
/home/continuum/data/working-directory/94/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 1 source file to 
/home/continuum/data/working-directory/94/target/test-classes
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/continuum/data/working-directory/94/target/surefire-reports

---
T E S T S
---
Running org.apache.cocoon.maven.rcl.RwmPropertiesTest
log4j:WARN No appenders could be found for logger 
(org.apache.commons.configuration.ConfigurationUtils).
log4j:WARN Please initialize the log4j system properly.
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.19 sec

Results :
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/94/target/cocoon-maven-plugin-1.0.0-RC1-SNAPSHOT.jar
[INFO] [plugin:addPluginArtifactMetadata]
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/94/target/cocoon-maven-plugin-1.0.0-RC1-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-maven-plugin/1.0.0-RC1-SNAPSHOT/cocoon-maven-plugin-1.0.0-RC1-SNAPSHOT.jar
[INFO] [plugin:updateRegistry]
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 12 seconds
[INFO] Finished at: Fri Aug 17 13:37:34 PDT 2007
[INFO] Final Memory: 18M/33M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Maven Reports

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=998projectId=93

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:37:44 -0700
 Finished at: Fri 17 Aug 2007 13:37:53 -0700
 Total time: 8s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Maven Reports
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/93/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/93/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/93/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/93/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/93/target/cocoon-maven-reports-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/93/target/cocoon-maven-reports-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-maven-reports/1.0.0-SNAPSHOT/cocoon-maven-reports-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 6 seconds
[INFO] Finished at: Fri Aug 17 13:37:53 PDT 2007
[INFO] Final Memory: 10M/19M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Servlet Service Sample Blocks

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=999projectId=102

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:38:02 -0700
 Finished at: Fri 17 Aug 2007 13:38:19 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Servlet Service Sample Blocks
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/102/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/102/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/102/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/102/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 2 source files to 
/home/continuum/data/working-directory/102/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/102/target/cocoon-servlet-service-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/102/target/cocoon-servlet-service-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-servlet-service-sample/1.0.0-SNAPSHOT/cocoon-servlet-service-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 13 seconds
[INFO] Finished at: Fri Aug 17 13:38:18 PDT 2007
[INFO] Final Memory: 20M/37M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Template Block Samples

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=1000projectId=65

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:38:29 -0700
 Finished at: Fri 17 Aug 2007 13:38:45 -0700
 Total time: 16s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Template Block Samples
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/65/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/65/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/65/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/65/target/site
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/continuum/data/working-directory/65/target/cocoon-template-sample-1.0.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/65/target/cocoon-template-sample-1.0.0-SNAPSHOT.jar
 to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-template-sample/1.0.0-SNAPSHOT/cocoon-template-sample-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Aug 17 13:38:45 PDT 2007
[INFO] Final Memory: 22M/40M
[INFO] 






[continuum] BUILD SUCCESSFUL: Cocoon Webapp

2007-08-17 Thread [EMAIL PROTECTED]

Online report : 
http://vmbuild1.apache.org/continuum/buildResult.action?buildId=1001projectId=83

Build statistics:
 State: Ok
 Previous Build: No previous build.
 Started at: Fri 17 Aug 2007 13:38:53 -0700
 Finished at: Fri 17 Aug 2007 13:40:56 -0700
 Total time: 2m 2s
 Build Trigger: Schedule
 Build Number: 1
 Exit code: 0
 Building machine hostname: vmbuild
 Operating system : Linux(unknown)
 Java Home version : 
 java version 1.4.2_15

 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_15-b02)
 Java HotSpot(TM) Client VM (build 1.4.2_15-b02, mixed mode)
   
 Builder version :

 Maven version: 2.0.7
 Java version: 1.4.2_15
 OS name: linux version: 2.6.20-16-server arch: i386
   


SCM Changes:

No files changed


Dependencies Changes:

No dependencies changed


Test Summary:

Tests: 0
Failures: 0
Total time: 0


Output:

[INFO] Scanning for projects...
[INFO] 

[INFO] Building Cocoon Webapp
[INFO]task-segment: [clean, install]
[INFO] 

[INFO] [clean:clean]
[INFO] Deleting directory /home/continuum/data/working-directory/83/target
[INFO] Deleting directory 
/home/continuum/data/working-directory/83/target/classes
[INFO] Deleting directory 
/home/continuum/data/working-directory/83/target/test-classes
[INFO] Deleting directory /home/continuum/data/working-directory/83/target/site
[INFO] artifact org.apache.maven.plugins:maven-resources-plugin: checking for 
updates from snapshots
[INFO] artifact org.apache.maven.plugins:maven-install-plugin: checking for 
updates from snapshots
[INFO] [enforcer:enforce-once {execution: enforce-maven}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://repo1.maven.org/maven2/castor/castor/1.0/castor-1.0.pom
Downloading: http://repo1.maven.org/maven2/jfor/jfor/0.7.1/jfor-0.7.1.pom
Downloading: 
http://repo1.maven.org/maven2/xmldb/xmldb-api/20030701/xmldb-api-20030701.pom
Downloading: 
http://repo1.maven.org/maven2/xmldb/xmldb-common/20030701/xmldb-common-20030701.pom
Downloading: 
http://repo1.maven.org/maven2/xmldb/xmldb-xupdate/20040205/xmldb-xupdate-20040205.pom
Downloading: 
http://repo1.maven.org/maven2/xindice/xindice/1.1b4/xindice-1.1b4.pom
Downloading: 
http://repo1.maven.org/maven2/wsrp4j/wsrp4j-consumer/0.3-dev/wsrp4j-consumer-0.3-dev.pom
Downloading: 
http://repo1.maven.org/maven2/wsrp4j/wsrp4j-shared/0.3-dev/wsrp4j-shared-0.3-dev.pom
[INFO] [compiler:compile]
[INFO] No sources to compile
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [war:war]
[INFO] Exploding webapp...
[INFO] Assembling webapp cocoon-webapp in 
/home/continuum/data/working-directory/83/target/cocoon-webapp
[INFO] Copy webapp webResources to 
/home/continuum/data/working-directory/83/target/cocoon-webapp
[INFO] Generating war 
/home/continuum/data/working-directory/83/target/cocoon-webapp.war
[INFO] Building war: 
/home/continuum/data/working-directory/83/target/cocoon-webapp.war
[INFO] [install:install]
[INFO] Installing 
/home/continuum/data/working-directory/83/target/cocoon-webapp.war to 
/home/continuum/.m2/repository/org/apache/cocoon/cocoon-webapp/2.2.0-M2-SNAPSHOT/cocoon-webapp-2.2.0-M2-SNAPSHOT.war
[INFO] 
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 1 minute 54 seconds
[INFO] Finished at: Fri Aug 17 13:40:50 PDT 2007
[INFO] Final Memory: 72M/130M
[INFO] 






Re: [Fwd: B-Fabric does not run on Windows]

2007-08-17 Thread Felix Knecht
Hi Can

I have it up and running.

Long and heavy problems and short story:

Long and heavy was to get all the stuff you need under windows running.
Short story:
After having checked out everything, adapted postgresql passwords and ssh
keys and built the core modules via
cd [b-fabric]\
mvn clean install

I open 3 DOS windows (supposing [b-fabric] as root directory):
1. Window
cd activemq-server
mvn clean install activemq:run -Pfgcz-dev

2. Window
cd b-fabric-fgcz
mvn clean install sql:execute -Pfgcz-dev
cd ..\workhorse-fgcz
mvn clean install exec:java -Pfgcz-dev

3. Window
cd b-fabric-webapp
mvn clean install jetty:run -Pfgcz-dev

Conclusions:
Windows Vista 64-bit (it's probably not a specific problem of 64-bit) is =
not
usable anyhow! Whenever you've a chance please use any other version but =
NOT
Vista!!!

Felix

PS:
I had some problems with the connections to the db as well under windows,
but this solved my problems:
postgres.conf
- max_connections =3D 1000

I agree shouldn't be needed and Giacomo is on the way with the DAO
migration.


Can Türker schrieb:
 hi zusammen,
 
 hier versuch es mal über diese email adressen, da [EMAIL PROTECTED]
 keine messages  100 bytes annimmt.
 
 dank und gruss,
 can.
 
 
 
 
 Betreff:
 B-Fabric does not run on Windows
 Von:
 Can Türker [EMAIL PROTECTED]
 Datum:
 Wed, 08 Aug 2007 16:52:38 +0200
 An:
 [EMAIL PROTECTED]
 
 An:
 [EMAIL PROTECTED]
 
 
 Hi Felix,
 
 I compiled B-Fabric on Windows, but could not start the workhorse.
 
 Attached you will find the error output (err.txt).
 
 After that, I tried to explicitly set the protocol name for the entry
 
 search.naming-provider.uri
 
 in file
 
 E:\B-Fabric-2\workhorse-fgcz\src\main\resources\fgcz-dev.properties
 
 I tried both tcp and rmi. In both cases I got an error message that port
 1099 is in use
 (see err2.txt)
 
 It would be great if you or Giacomo could have view on the problem and
 fix it
 such that B-Fabric runs again on windows.
 
 Best regards.
 Can.