You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by Ganesh <ga...@j4fry.org> on 2009/05/06 09:19:02 UTC

Setting up tomahawk 1.2

Hi Leonardo,

Currently I'm trying to set up the tomahawk project on my system to 
package tomahwak-1.1.9-SNAPSHOT.jar as well as 
tomahawk12-1.1.9-SNAPSHOT.jar. I've checked out the tomahawk trunk and 
run mvn. It works fine for core/target/tomahwak-1.1.9-SNAPSHOT.jar. When 
going for tomahawk12 it fails. It unpacks the shared-sources and the 
tomahwak-1.1.9 jar but when compiling the tomahwak-1.1.9 classes aren't 
found on the build path:

[INFO] Configured Artifact: 
org.apache.myfaces.tomahawk:tomahawk:1.1.9-SNAPSHOT:jar
[INFO] Unpacking C:\Dokumente und 
Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jarto
 C:\projects\tomahawk\core12\target\tomahawk11_resources
with Includes null and 
excludes:**/*.class,**/META-INF/**,META-INF/componentClass12.vm,META-INF/facelets-taglib.vm,META-INF/faces-config12.vm,META-INF/LICENSE.txt,META-INF/licenses/dojo-LICENSE.TXT,META-INF/licenses/i18n-LICENSE.txt,META-INF/licenses/jscookmenu-LICENSE.txt,META-INF/licenses/kupu-LICENSE.txt,META-INF/licenses/prototype-LICENSE.txt,META-INF/licenses/scriptaculous-LICENSE.txt,META-INF/NOTICE.txt,META-INF/tagClass12.vm,META-INF/tagConverterClass12.vm,META-INF/tagValidatorClass12.vm,META-INF/tomahawk12.vm,META-INF/validatorClass12.vm,META-INF/xdoc-component.vm,META-INF/xdoc-converter.vm,META-INF/xdoc-tag.vm,META-INF/xdoc-validator.vm
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 187 source files to 
C:\projects\tomahawk\core12\target\classes
[INFO] 
------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] 
------------------------------------------------------------------------
[INFO] Compilation failure

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[26,37] 
cannot find symbol
symbol  : class HtmlTree
location: package org.apache.myfaces.custom.tree

.... (many more errors, no classes from tomahawk-1.1.9-SNAPSHOT.jar are 
on the compile path)


Do I have a problem with my maven version? I'm using Apache Maven 2.1.0 
(r755702; 2009-03-18 20:10:27+0100). Is there something else I need to 
set up in order to compile tomahawk12?

Best Regards,
Ganesh

tomahawk 1.2 build works only up to maven 2.0.9 - with 2.1.0 it fails

Posted by Ganesh <ga...@j4fry.org>.
Hi,

Ok, here we are for the tomahawk build: it doesn't work with maven 
2.1.0. With maven 2.0.9 mvn install's output starts with:

[INFO] 
------------------------------------------------------------------------
[INFO] Building Tomahawk 1.2 Core
[INFO]    task-segment: [install]
[INFO] 
------------------------------------------------------------------------
[INFO] [build-helper:add-source {execution: add-source}]
[INFO] Source directory: 
C:\projects\tomahawk\core12\target\shared_sources added.
[INFO] Source directory: 
C:\projects\tomahawk\core12\target\tomahawk11_sources added.
[INFO] [myfaces-builder:unpack {execution: unpack-tomahawk}]

with 2.1.0 it starts with:

[INFO] 
------------------------------------------------------------------------
[INFO] Building Tomahawk 1.2 Core
[INFO]    task-segment: [install]
[INFO] 
------------------------------------------------------------------------
[INFO] [myfaces-builder:unpack {execution: unpack-tomahawk}]

With 2.1.0 the compile fails, because the required sources are not on 
the build path.

Thank you Leonardo, your support helped me a lot in getting this to run. 
The tomahawk build now runs successfully on my machine through all it's 
subprojects.

Best regards,
Ganesh

Re: Setting up tomahawk 1.2

Posted by Ganesh <ga...@j4fry.org>.
Hi Leonardo,

I still haven't got any further with tomahawk 1.2. Do I need to build 
myfaces 1.2 on my machine? Is there any other dependency?

It would still be very helpful if you could send "mvn install > log.txt 
2>&1" and "mvn --version" as well as your myfaces-metadata.xml from 
tomahawk12 for me to check the differences with my local machine.

Best regards,
Ganesh

Ganesh schrieb:
> Hi,
>
> Thank you for helping out. 
> core12\target\tomahawk11_sources\org\apache\myfaces is there and 
> contains all the tomahawk11_sources (342 files). Reason 2 is therefore 
> excluded. I'm running maven from the command line. I've located 
> myfaces-metadata.xml at 
> core12\target\myfaces-builder-plugin\main\resources\META-INF, it's 
> 307.470 Bytes.
>
> Can you please send the output of
>
> mvn install > log.txt 2>&1
>
> and
>
> mvn --version
>
> so I can compare the results with mine?
>
> Best Regards,
> Ganesh
>
> Leonardo Uribe schrieb:
>> Hi
>>
>> Tomahawk core 1.2 has the following source directories:
>>
>> core12/src/main/java  // specific tomahawk core 1.2 java files
>> core12/target/tomahawk11_sources  // source files that comes from 
>> core, are not generated and are not on src/main/java
>> core12/target/shared_sources   // unpack shared 3.0.x
>> core12/target/myfaces-builder-plugin/main/java    // generated files 
>> using tomahawk 1.2 templates
>>
>> To create a model, myfaces-builder-plugin uses this two sources:
>>
>> core12/src/main/java  // specific tomahawk core 1.2 java files
>> core12/target/tomahawk11_sources  // source files that comes from 
>> core, are not generated and are not on src/main/java
>>
>> Then, it create a file called myfaces-metadata.xml. This file is used 
>> later by other goals to generate files.
>>
>> The problem could be caused by two reasons:
>>
>> 1. build-metadata goal does not scan the files on tomahawk11_sources.
>> 2. myfaces-builder-plugin unpack goal does not unpack files correctly.
>>
>> Please check core12/target/tomahawk11_sources, to discard one of the 
>> problems.
>>
>> If you are using netbeans and runnig the maven goal from that ide, 
>> try run from console directly.
>>
>> regards
>>
>> Leonardo Uribe
>

Re: Setting up tomahawk 1.2

Posted by Ganesh <ga...@j4fry.org>.
Hi,

Thank you for helping out. 
core12\target\tomahawk11_sources\org\apache\myfaces is there and 
contains all the tomahawk11_sources (342 files). Reason 2 is therefore 
excluded. I'm running maven from the command line. I've located 
myfaces-metadata.xml at 
core12\target\myfaces-builder-plugin\main\resources\META-INF, it's 
307.470 Bytes.

Can you please send the output of

mvn install > log.txt 2>&1

and

mvn --version

so I can compare the results with mine?

Best Regards,
Ganesh

Leonardo Uribe schrieb:
> Hi
>
> Tomahawk core 1.2 has the following source directories:
>
> core12/src/main/java  // specific tomahawk core 1.2 java files
> core12/target/tomahawk11_sources  // source files that comes from 
> core, are not generated and are not on src/main/java
> core12/target/shared_sources   // unpack shared 3.0.x
> core12/target/myfaces-builder-plugin/main/java    // generated files 
> using tomahawk 1.2 templates
>
> To create a model, myfaces-builder-plugin uses this two sources:
>
> core12/src/main/java  // specific tomahawk core 1.2 java files
> core12/target/tomahawk11_sources  // source files that comes from 
> core, are not generated and are not on src/main/java
>
> Then, it create a file called myfaces-metadata.xml. This file is used 
> later by other goals to generate files.
>
> The problem could be caused by two reasons:
>
> 1. build-metadata goal does not scan the files on tomahawk11_sources.
> 2. myfaces-builder-plugin unpack goal does not unpack files correctly.
>
> Please check core12/target/tomahawk11_sources, to discard one of the 
> problems.
>
> If you are using netbeans and runnig the maven goal from that ide, try 
> run from console directly.
>
> regards
>
> Leonardo Uribe

Re: Setting up tomahawk 1.2

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

Tomahawk core 1.2 has the following source directories:

core12/src/main/java  // specific tomahawk core 1.2 java files
core12/target/tomahawk11_sources  // source files that comes from core, are
not generated and are not on src/main/java
core12/target/shared_sources   // unpack shared 3.0.x
core12/target/myfaces-builder-plugin/main/java    // generated files using
tomahawk 1.2 templates

To create a model, myfaces-builder-plugin uses this two sources:

core12/src/main/java  // specific tomahawk core 1.2 java files
core12/target/tomahawk11_sources  // source files that comes from core, are
not generated and are not on src/main/java

Then, it create a file called myfaces-metadata.xml. This file is used later
by other goals to generate files.

The problem could be caused by two reasons:

1. build-metadata goal does not scan the files on tomahawk11_sources.
2. myfaces-builder-plugin unpack goal does not unpack files correctly.

Please check core12/target/tomahawk11_sources, to discard one of the
problems.

If you are using netbeans and runnig the maven goal from that ide, try run
from console directly.

regards

Leonardo Uribe

Re: Setting up tomahawk 1.2

Posted by Ganesh <ga...@j4fry.org>.
[INFO] Scanning for projects...
[WARNING] Overriding profile: 'jsfri' (source: pom) with new instance from source: pom
[INFO] Reactor build order: 
[INFO]   Tomahawk Project
[INFO]   Tomahawk Core
[INFO]   Tomahawk 1.2 Core
[INFO]   Tomahawk Examples Project
[INFO]   Tomahawk Examples: Blank
[INFO]   Tomahawk Examples: Simple
[INFO]   Tomahawk Examples: Tiles
[INFO]   Tomahawk Examples: WAP
[INFO]   Sandbox Project
[INFO]   Sandbox Core
[INFO]   Sandbox Core 12
[INFO]   Sandbox Examples
[INFO]   Sandbox15 Project
[INFO]   Sandbox15 Core
[INFO]   Sandbox15 Examples
[INFO] ------------------------------------------------------------------------
[INFO] Building Tomahawk Project
[INFO]    task-segment: [install]
[INFO] ------------------------------------------------------------------------
[INFO] [site:attach-descriptor]
[INFO] Preparing checkstyle:check
[INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[INFO] Setting property: velocimacro.messages.on => 'false'.
[INFO] Setting property: resource.loader => 'classpath'.
[INFO] Setting property: resource.manager.logwhenfound => 'false'.
[INFO] ************************************************************** 
[INFO] Starting Jakarta Velocity v1.4
[INFO] RuntimeInstance initializing.
[INFO] Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
[INFO] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl)
[INFO] Resource Loader Instantiated: org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader
[INFO] ClasspathResourceLoader : initialization starting.
[INFO] ClasspathResourceLoader : initialization complete.
[INFO] ResourceCache : initialized. (class org.apache.velocity.runtime.resource.ResourceCacheImpl)
[INFO] Default ResourceManager initialization complete.
[INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Literal
[INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
[INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
[INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Include
[INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
[INFO] Created: 20 parsers.
[INFO] Velocimacro : initialization starting.
[INFO] Velocimacro : adding VMs from VM library template : VM_global_library.vm
[ERROR] ResourceManager : unable to find resource 'VM_global_library.vm' in any resource loader.
[INFO] Velocimacro : error using  VM library template VM_global_library.vm : org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'VM_global_library.vm'
[INFO] Velocimacro :  VM library template macro registration complete.
[INFO] Velocimacro : allowInline = true : VMs can be defined inline in templates
[INFO] Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
[INFO] Velocimacro : allowInlineLocal = false : VMs defined inline will be  global in scope if allowed.
[INFO] Velocimacro : initialization complete.
[INFO] Velocity successfully started.
[INFO] [checkstyle:checkstyle]
[INFO] Source directory does not exist - skipping report.
[INFO] [checkstyle:check {execution: verify-style}]
[INFO] Unable to perform checkstyle:check, unable to find checkstyle:checkstyle outputFile.
[INFO] [install:install]
[INFO] Installing C:\projects\tomahawk\target\pom-transformed.xml to C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk-project\1.1.9-SNAPSHOT\tomahawk-project-1.1.9-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] Building Tomahawk Core
[INFO]    task-segment: [install]
[INFO] ------------------------------------------------------------------------
[INFO] [buildnumber:create {execution: default}]
[INFO] Storing buildNumber: 2009-05-06 21:17:02 +0200 at timestamp: 1241637422281
Downloading: http://download.java.net/maven/1/cactus/poms/cactus-13-1.7.2.pom
[INFO] Unable to find resource 'cactus:cactus:pom:13-1.7.2' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/cactus/cactus/13-1.7.2/cactus-13-1.7.2.pom
[INFO] Unable to find resource 'cactus:cactus:pom:13-1.7.2' in repository central (http://repo1.maven.org/maven2)
[INFO] [myfaces-builder:build-metadata {execution: default}]
log4j:WARN No appenders could be found for logger (org.apache.commons.digester.Digester.sax).
log4j:WARN Please initialize the log4j system properly.
Artifact: myfaces-api-1.1.6.jar have META-INF/myfaces-metadata.xml
[INFO] [myfaces-builder:make-config {execution: makefacesconfig}]
06.05.2009 21:17:27 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:27 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:27 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core\src\main\conf\META-INF\faces-config-base.xml
[INFO] [myfaces-builder:make-components {execution: makecomp}]
06.05.2009 21:17:30 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\componentClass11.vm
06.05.2009 21:17:30 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:30 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:30 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:17:30 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlCommandButton
06.05.2009 21:17:30 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlCommandLink
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlDataTable
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlGraphicImage
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputHidden
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputSecret
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputText
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputTextarea
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlMessage
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlMessages
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlOutputLabel
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlOutputText
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlPanelGrid
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlPanelGroup
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectBooleanCheckbox
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectManyCheckbox
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectManyListbox
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectManyMenu
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectOneListbox
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectOneMenu
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectOneRadio
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.buffer.Buffer
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.calendar.HtmlInputCalendar
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.captcha.CAPTCHAComponent
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.checkbox.HtmlCheckbox
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanel
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLink
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.column.HtmlSimpleColumn
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.crosstable.HtmlColumns
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.datalist.HtmlDataList
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.datascroller.HtmlDataScroller
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.date.HtmlInputDate
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.div.Div
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.document.DocumentBody
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.fieldset.Fieldset
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.fileupload.HtmlInputFileUpload
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.htmlTag.HtmlTag
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelp
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.jslistener.JsValueChangeListener
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.jsvalueset.HtmlJsValueSet
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.layout.HtmlPanelLayout
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navigation.HtmlCommandNavigation
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navigation.HtmlPanelNavigation
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItems
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.UINavigationMenuItem
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItem
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenu
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.jscookmenu.HtmlCommandJSCookMenu
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.newspaper.HtmlNewspaperTable
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.panelstack.HtmlPanelStack
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.picklist.HtmlSelectManyPicklist
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.popup.HtmlPopup
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.radio.HtmlRadio
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.schedule.HtmlSchedule
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.schedule.UIScheduleBase
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectOneCountry.SelectOneCountry
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguage
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectOneRow.SelectOneRow
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectitems.UISelectItems
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.sortheader.HtmlCommandSortHeader
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.stylesheet.Stylesheet
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.subform.SubForm
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.swapimage.HtmlSwapImage
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTab
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPane
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.toggle.ToggleGroup
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.toggle.ToggleLink
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.toggle.TogglePanel
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.transform.XmlTransform
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tree.HtmlTreeCheckbox
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tree.HtmlTreeImageCommandLink
06.05.2009 21:17:31 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tree2.HtmlTree
[INFO] [myfaces-builder:make-validators {execution: makeval}]
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\validatorClass11.vm
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo generateValidators
INFO: Generating validator class:org.apache.myfaces.custom.creditcardvalidator.CreditCardValidator
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo generateValidators
INFO: Generating validator class:org.apache.myfaces.custom.equalvalidator.EqualValidator
06.05.2009 21:17:34 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo generateValidators
INFO: Generating validator class:org.apache.myfaces.custom.regexprvalidator.RegExprValidator
[INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagClass11.vm
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlColumnTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.ParamTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SelectItemTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SelectItemsTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.ViewTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputHiddenTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlCommandButtonTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlCommandLinkTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlDataTableTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlFormTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlGraphicImageTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputSecretTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputTextTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputTextareaTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlMessageTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlMessagesTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputFormatTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputLabelTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputLinkTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputTextTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlPanelGridTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlPanelGroupTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectBooleanCheckboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyCheckboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyListboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyMenuTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneListboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneMenuTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneRadioTag
[INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagClass11.vm
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlCommandButtonTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlCommandLinkTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlDataTableTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlGraphicImageTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputHiddenTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputSecretTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextareaTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlMessageTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlMessagesTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlOutputLabelTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlOutputTextTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGridTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGroupTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectBooleanCheckboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyCheckboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyListboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyMenuTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneListboxTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneMenuTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneRadioTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.buffer.BufferTag
06.05.2009 21:17:35 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.calendar.HtmlInputCalendarTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.captcha.CAPTCHATag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.checkbox.HtmlCheckboxTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanelTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLinkTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.column.HtmlColumnTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.crosstable.HtmlColumnsTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.datalist.HtmlDataListTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.datascroller.HtmlDataScrollerTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.date.HtmlInputDateTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.div.DivTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.AbstractDocumentTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.DocumentBodyTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.DocumentTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.DocumentHeadTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.dojo.DojoInitializerTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.fieldset.FieldsetTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.fileupload.HtmlInputFileUploadTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.htmlTag.HtmlTagTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.inputHtml.InputHtmlTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelpTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.jslistener.JsValueChangeListenerTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.jsvalueset.HtmlJsValueSetTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.layout.HtmlPanelLayoutTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navigation.HtmlCommandNavigationTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navigation.HtmlPanelNavigationTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemsTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItemTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenuTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.jscookmenu.HtmlJSCookMenuTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.newspaper.HtmlNewspaperTableTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.panelstack.PanelStackTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.picklist.HtmlSelectManyPicklistTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.popup.HtmlPopupTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.radio.HtmlRadioTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.savestate.SaveStateTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.schedule.ScheduleTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectOneCountry.SelectOneCountryTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectOneRow.SelectOneRowTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectitems.SelectItemsTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.sortheader.HtmlCommandSortHeaderTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.stylesheet.StylesheetTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.subform.SubFormTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.swapimage.HtmlSwapImageTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTabTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPaneTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.toggle.ToggleGroupTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.toggle.ToggleLinkTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.toggle.TogglePanelTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.transform.XmlTransformTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree.taglib.TreeCheckboxTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree.taglib.TreeTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree.taglib.TreeColumnTag
06.05.2009 21:17:36 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree2.TreeTag
[INFO] [myfaces-builder:make-validator-tags {execution: make_validator_tags_tomahawk}]
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagValidatorClass11.vm
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.creditcardvalidator.ValidateCreditCardTag
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.emailvalidator.ValidateEmailTag
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.equalvalidator.ValidateEqualTag
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.regexprvalidator.ValidateRegExprTag
[INFO] [myfaces-builder:make-converter-tags {execution: make_validator_tags_tomahawk}]
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeConverterTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagConverterClass11.vm
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:37 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] [myfaces-builder:make-config {execution: maketomahawktld}]
06.05.2009 21:17:38 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:38 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:38 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core\src\main\conf\META-INF\tomahawk-base.tld
[INFO] [myfaces-builder:make-config {execution: maketomahawktaglib}]
06.05.2009 21:17:38 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:17:38 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:17:38 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core\src\main\conf\META-INF\facelets-taglib-base.xml
[INFO] [dependency:unpack {execution: unpack-shared-impl-sources}]
[INFO] Configured Artifact: org.apache.myfaces.shared:myfaces-shared-tomahawk:sources:?:jar
[INFO] Unpacking C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\shared\myfaces-shared-tomahawk\2.0.9\myfaces-shared-tomahawk-2.0.9-sources.jarto
 C:\projects\tomahawk\core\target\shared_sources
with Includes null and excludes:META-INF/*.*
[INFO] [build-helper:add-source {execution: add-source}]
[INFO] Source directory: C:\projects\tomahawk\core\target\shared_sources added.
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 186 source files to C:\projects\tomahawk\core\target\classes
[INFO] [dependency:unpack {execution: unpack-shared-tomahawk}]
[INFO] Configured Artifact: org.apache.myfaces.shared:myfaces-shared-tomahawk:?:jar
[INFO] Unpacking C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\shared\myfaces-shared-tomahawk\2.0.9\myfaces-shared-tomahawk-2.0.9.jarto
 C:\projects\tomahawk\core\target\classes
with Includes null and excludes:META-INF/*.*
[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: C:\projects\tomahawk\core\target\surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running org.apache.myfaces.test.MyFacesTagLibTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.265 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectManyMenuTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.672 sec
Running org.apache.myfaces.custom.fileupload.HtmlFileUploadRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlSecretRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.component.html.ext.HtmlOutputLabelTest
06.05.2009 21:18:26 org.apache.myfaces.renderkit.html.HtmlLabelRenderer encodeBegin
WARNUNG: Attribute 'for' of label component with id TestComponent is not defined
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
Running org.apache.myfaces.component.html.ext.HtmlGraphicImageTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
06.05.2009 21:18:26 org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlImageRendererBase encodeEnd
WARNUNG: ALT attribute is missing for : TestComponent
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.custom.tree2.HtmlTreeRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.ALLOW_JAVASCRIPT' found, using default value true
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default value true
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID' found, using default value true
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS' found, using default value true
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getLongInitParameter
INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD' found, using default value 2
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH' found, using default value /faces/myFacesExtensionResource
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
06.05.2009 21:18:26 org.apache.myfaces.shared_impl.config.MyfacesConfig createAndInitializeMyFacesConfig
INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.141 sec
Running org.apache.myfaces.custom.tree.renderkit.html.HtmlTreeImageCommandLinkRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
No state saving method defined, assuming default server state saving
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.custom.tree.renderkit.html.HtmlTreeRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
No state saving method defined, assuming default server state saving
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
No state saving method defined, assuming default server state saving
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
Running org.apache.myfaces.component.html.ext.HtmlPanelGridTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.selectOneRow.SelectOneRowRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.dateformat.TestSimpleDateFormatter
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.172 sec
Running org.apache.myfaces.custom.date.UserDataTest
Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectOneListboxTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.component.html.ext.HtmlOutputTextTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.custom.htmltag.HtmlTagRendererTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.myfaces.renderkit.html.util.ReducedHTMLParserTest
06.05.2009 21:18:27 org.apache.myfaces.renderkit.html.util.ReducedHTMLParser parse
WARNUNG: Invalid HTML; bare lessthan sign found at line 3. Surroundings: '# 

'.
06.05.2009 21:18:27 org.apache.myfaces.renderkit.html.util.ReducedHTMLParser parse
WARNUNG: Invalid HTML; bare lessthan sign found at line 3. Surroundings: '# 

 hi there'.
06.05.2009 21:18:27 org.apache.myfaces.renderkit.html.util.ReducedHTMLParser parse
WARNUNG: Invalid tag found: unexpected input while looking for attr name or '/>' at line 1. Surroundings: ')/>'.
Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.custom.selectitems.UISelectItemsTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectOneRadioTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlImageRendererTest
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlImageRendererBase encodeEnd
WARNUNG: ALT attribute is missing for : img1
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlImageRendererBase encodeEnd
WARNUNG: ALT attribute is missing for : img1
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.renderkit.html.util.AddResourceTest
<html><head></head><body></body></html>
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.109 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlGroupRendererTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.component.html.ext.HtmlInputSecretTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.custom.validators.RegExprValidatorTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.281 sec
Running org.apache.myfaces.custom.tabbedpane.HtmlTabbedPaneRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
Running org.apache.myfaces.custom.date.TestBean
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.myfaces.component.html.ext.HtmlMessageTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.custom.stylesheet.StylesheetRendererTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlMessageRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectBooleanCheckboxTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlRadioRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlLinkRendererTest
WARNING: Component _id1 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id1:_id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
No state saving method defined, assuming default server state saving
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getLongInitParameter
INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD' found, using default value 2
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH' found, using default value /faces/myFacesExtensionResource
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_impl.config.MyfacesConfig createAndInitializeMyFacesConfig
INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
WARNING: Component _id1 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id1:_id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getLongInitParameter
INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD' found, using default value 2
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH' found, using default value /faces/myFacesExtensionResource
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
06.05.2009 21:18:27 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig createAndInitializeMyFacesConfig
INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
No state saving method defined, assuming default server state saving
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
Running org.apache.myfaces.component.html.ext.HtmlInputTextTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.savestate.UISaveStateTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
Running org.apache.myfaces.custom.layout.HtmlLayoutRendererTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.component.html.ext.HtmlMessagesTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlTextRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.validators.EqualValidatorTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlGridRendererTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.validators.EmailValidatorTestCase
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlMessagesRendererTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.calendar.HtmlCalendarRendererTest
Testing rendered attributes
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
---------------------------------------
<input id="_id0" name="_id0" type="text" onmouseover="onMouseOverTest()" onfocus="onfocusTest()"/><span id="_id0Span"/><script type="text/javascript">_5Fid0CalendarVar=new org_apache_myfaces_PopupCalendar();
_5Fid0CalendarVar.initData.themePrefix = &quot;jscalendar-DB&quot;;
_5Fid0CalendarVar.initData.imgDir = &quot;nullnull\/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader\/12416375\/calendar.HtmlCalendarRenderer\/DB\/&quot;;
_5Fid0CalendarVar.initData.monthName = new Array(&quot;Januar&quot;,&quot;Februar&quot;,&quot;M\u00E4rz&quot;,&quot;April&quot;,&quot;Mai&quot;,&quot;Juni&quot;,&quot;Juli&quot;,&quot;August&quot;,&quot;September&quot;,&quot;Oktober&quot;,&quot;November&quot;,&quot;Dezember&quot;);
_5Fid0CalendarVar.initData.dayName = new Array(&quot;Mo&quot;,&quot;Di&quot;,&quot;Mi&quot;,&quot;Do&quot;,&quot;Fr&quot;,&quot;Sa&quot;,&quot;So&quot;);
_5Fid0CalendarVar.initData.startAt = 1;
_5Fid0CalendarVar.dateFormatSymbols.weekdays = new Array(&quot;Sonntag&quot;,&quot;Montag&quot;,&quot;Dienstag&quot;,&quot;Mittwoch&quot;,&quot;Donnerstag&quot;,&quot;Freitag&quot;,&quot;Samstag&quot;);
_5Fid0CalendarVar.dateFormatSymbols.shortWeekdays = new Array(&quot;So&quot;,&quot;Mo&quot;,&quot;Di&quot;,&quot;Mi&quot;,&quot;Do&quot;,&quot;Fr&quot;,&quot;Sa&quot;);
_5Fid0CalendarVar.dateFormatSymbols.shortMonths = new Array(&quot;Jan&quot;,&quot;Feb&quot;,&quot;Mrz&quot;,&quot;Apr&quot;,&quot;Mai&quot;,&quot;Jun&quot;,&quot;Jul&quot;,&quot;Aug&quot;,&quot;Sep&quot;,&quot;Okt&quot;,&quot;Nov&quot;,&quot;Dez&quot;);
_5Fid0CalendarVar.dateFormatSymbols.months = new Array(&quot;Januar&quot;,&quot;Februar&quot;,&quot;M\u00E4rz&quot;,&quot;April&quot;,&quot;Mai&quot;,&quot;Juni&quot;,&quot;Juli&quot;,&quot;August&quot;,&quot;September&quot;,&quot;Oktober&quot;,&quot;November&quot;,&quot;Dezember&quot;);
_5Fid0CalendarVar.dateFormatSymbols.eras = new Array(&quot;v. Chr.&quot;,&quot;n. Chr.&quot;);
_5Fid0CalendarVar.dateFormatSymbols.ampms = new Array(&quot;AM&quot;,&quot;PM&quot;);
_5Fid0CalendarVar.initData.popupLeft = false;

_5Fid0CalendarVar.initData.selectMode = &quot;day&quot;;
_5Fid0CalendarVar.init(document.getElementById(&apos;_id0Span&apos;));
</script><input type="button" onclick="_5Fid0CalendarVar._popUpCalendar(this,document.getElementById(&apos;_id0&apos;),&apos;dd.MM.yy&apos;)" value="..."/>

---------------------------------------
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
Running org.apache.myfaces.custom.inputTextHelp.HtmlTextHelpRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.custom.div.DivRendererTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectOneMenuTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectManyCheckboxTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec
Running org.apache.myfaces.custom.picklist.HtmlPicklistRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.11 sec
Running org.apache.myfaces.custom.tree2.HtmlTreeTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.component.html.ext.HtmlDataTableTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.079 sec
Running org.apache.myfaces.custom.newspaper.HtmlNewspaperTableRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.component.html.ext.HtmlCommandButtonTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlMenuRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlTableRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.test.TomahawkClassElementTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.672 sec
Running org.apache.myfaces.component.html.ext.HtmlInputTextareaTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.component.html.ext.HtmlPanelGroupTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlListboxRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.selectOneCountry.SelectOneCountryRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.094 sec
Running org.apache.myfaces.custom.swapimage.HtmlSwapImageRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.custom.tree2.UITreeDataTest
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
06.05.2009 21:18:29 org.apache.myfaces.custom.tree2.UITreeData processNodes
WARNUNG: Unable to locate facet with the name: default
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
Running org.apache.myfaces.custom.tree2.TreeWalkerBaseTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlTextareaRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.transform.XmlTransformTest
Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.625 sec
Running org.apache.myfaces.custom.navigation.HtmlNavigationRendererTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.component.html.ext.HtmlSelectManyListboxTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.custom.tree.renderkit.html.HtmlTreeCheckboxRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.myfaces.custom.datalist.HtmlListRendererTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.apache.myfaces.renderkit.html.ext.HtmlButtonRendererTest
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getLongInitParameter
INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD' found, using default value 2
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH' found, using default value /faces/myFacesExtensionResource
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_impl.config.MyfacesConfig createAndInitializeMyFacesConfig
INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
WARNING: Component _id1 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id1:_id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getLongInitParameter
INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD' found, using default value 2
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getStringInitParameter
INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH' found, using default value /faces/myFacesExtensionResource
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig getBooleanInitParameter
INFO: No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
06.05.2009 21:18:31 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig createAndInitializeMyFacesConfig
INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
WARNING: Component _id1 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
WARNING: Component _id1:_id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.component.html.ext.HtmlInputHiddenTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageRendererTest
WARNING: Component _id0 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec

Results :

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

[INFO] [jar:jar]
[INFO] Building jar: C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT.jar
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] [buildnumber:create {execution: default}]
[INFO] Storing buildNumber: 2009-05-06 21:18:41 +0200 at timestamp: 1241637521515
[INFO] [myfaces-builder:build-metadata {execution: default}]
Artifact: myfaces-api-1.1.6.jar have META-INF/myfaces-metadata.xml
[INFO] [myfaces-builder:make-config {execution: makefacesconfig}]
06.05.2009 21:18:45 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:45 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:45 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core\src\main\conf\META-INF\faces-config-base.xml
[INFO] [myfaces-builder:make-components {execution: makecomp}]
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\componentClass11.vm
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlCommandButton
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlCommandLink
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlDataTable
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlGraphicImage
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputHidden
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputSecret
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputText
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlInputTextarea
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlMessage
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlMessages
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlOutputLabel
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlOutputText
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlPanelGrid
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlPanelGroup
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectBooleanCheckbox
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectManyCheckbox
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectManyListbox
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectManyMenu
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectOneListbox
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectOneMenu
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.component.html.ext.HtmlSelectOneRadio
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.buffer.Buffer
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.calendar.HtmlInputCalendar
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.captcha.CAPTCHAComponent
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.checkbox.HtmlCheckbox
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanel
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLink
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.column.HtmlSimpleColumn
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.crosstable.HtmlColumns
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.datalist.HtmlDataList
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.datascroller.HtmlDataScroller
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.date.HtmlInputDate
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.htmlTag.HtmlTag
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.div.Div
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.document.DocumentBody
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.fieldset.Fieldset
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.fileupload.HtmlInputFileUpload
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelp
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.jslistener.JsValueChangeListener
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.jsvalueset.HtmlJsValueSet
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.layout.HtmlPanelLayout
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navigation.HtmlCommandNavigation
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navigation.HtmlPanelNavigation
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItems
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.UINavigationMenuItem
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItem
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenu
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.jscookmenu.HtmlCommandJSCookMenu
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.newspaper.HtmlNewspaperTable
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.panelstack.HtmlPanelStack
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.picklist.HtmlSelectManyPicklist
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.popup.HtmlPopup
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.radio.HtmlRadio
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.schedule.UIScheduleBase
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.schedule.HtmlSchedule
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectOneCountry.SelectOneCountry
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguage
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectOneRow.SelectOneRow
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.selectitems.UISelectItems
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.sortheader.HtmlCommandSortHeader
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.stylesheet.Stylesheet
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.subform.SubForm
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.swapimage.HtmlSwapImage
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTab
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPane
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.toggle.ToggleGroup
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.toggle.ToggleLink
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.toggle.TogglePanel
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.transform.XmlTransform
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tree.HtmlTreeCheckbox
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tree.HtmlTreeImageCommandLink
06.05.2009 21:18:48 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.tree2.HtmlTree
[INFO] [myfaces-builder:make-validators {execution: makeval}]
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\validatorClass11.vm
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo generateValidators
INFO: Generating validator class:org.apache.myfaces.custom.creditcardvalidator.CreditCardValidator
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo generateValidators
INFO: Generating validator class:org.apache.myfaces.custom.equalvalidator.EqualValidator
06.05.2009 21:18:51 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo generateValidators
INFO: Generating validator class:org.apache.myfaces.custom.regexprvalidator.RegExprValidator
[INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagClass11.vm
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlColumnTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.ParamTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SelectItemTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SelectItemsTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.ViewTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputHiddenTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlCommandButtonTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlCommandLinkTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlDataTableTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlFormTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlGraphicImageTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputSecretTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputTextTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputTextareaTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlMessageTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlMessagesTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputFormatTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputLabelTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputLinkTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputTextTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlPanelGridTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlPanelGroupTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectBooleanCheckboxTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyCheckboxTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyListboxTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyMenuTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneListboxTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneMenuTag
06.05.2009 21:18:52 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneRadioTag
[INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagClass11.vm
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlCommandButtonTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlCommandLinkTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlDataTableTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlGraphicImageTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputHiddenTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputSecretTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextareaTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlMessageTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlMessagesTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlOutputLabelTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlOutputTextTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGridTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGroupTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectBooleanCheckboxTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyCheckboxTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyListboxTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyMenuTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneListboxTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneMenuTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneRadioTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.buffer.BufferTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.calendar.HtmlInputCalendarTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.captcha.CAPTCHATag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.checkbox.HtmlCheckboxTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanelTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLinkTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.column.HtmlColumnTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.crosstable.HtmlColumnsTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.datalist.HtmlDataListTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.datascroller.HtmlDataScrollerTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.date.HtmlInputDateTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.htmlTag.HtmlTagTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.div.DivTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.AbstractDocumentTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.DocumentBodyTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.DocumentTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.document.DocumentHeadTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.dojo.DojoInitializerTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.fieldset.FieldsetTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.fileupload.HtmlInputFileUploadTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.inputHtml.InputHtmlTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelpTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.jslistener.JsValueChangeListenerTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.jsvalueset.HtmlJsValueSetTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.layout.HtmlPanelLayoutTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navigation.HtmlCommandNavigationTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navigation.HtmlPanelNavigationTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemsTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItemTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenuTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.jscookmenu.HtmlJSCookMenuTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.newspaper.HtmlNewspaperTableTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.panelstack.PanelStackTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.picklist.HtmlSelectManyPicklistTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.popup.HtmlPopupTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.radio.HtmlRadioTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.savestate.SaveStateTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.schedule.ScheduleTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectOneCountry.SelectOneCountryTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectOneRow.SelectOneRowTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.selectitems.SelectItemsTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.sortheader.HtmlCommandSortHeaderTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.stylesheet.StylesheetTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.subform.SubFormTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.swapimage.HtmlSwapImageTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTabTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPaneTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.toggle.ToggleGroupTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.toggle.ToggleLinkTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.toggle.TogglePanelTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.transform.XmlTransformTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree.taglib.TreeCheckboxTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree.taglib.TreeTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree.taglib.TreeColumnTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.tree2.TreeTag
[INFO] [myfaces-builder:make-validator-tags {execution: make_validator_tags_tomahawk}]
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagValidatorClass11.vm
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.creditcardvalidator.ValidateCreditCardTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.emailvalidator.ValidateEmailTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.equalvalidator.ValidateEqualTag
06.05.2009 21:18:53 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo generateValidators
INFO: Generating tag class:org.apache.myfaces.custom.regexprvalidator.ValidateRegExprTag
[INFO] [myfaces-builder:make-converter-tags {execution: make_validator_tags_tomahawk}]
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeConverterTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core\src\main\resources\META-INF\tagConverterClass11.vm
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] [myfaces-builder:make-config {execution: maketomahawktld}]
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:54 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core\src\main\conf\META-INF\tomahawk-base.tld
[INFO] [myfaces-builder:make-config {execution: maketomahawktaglib}]
06.05.2009 21:18:55 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core\src\main\resources\META-INF'
06.05.2009 21:18:55 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:18:55 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core\src\main\conf\META-INF\facelets-taglib-base.xml
[INFO] [source:jar {execution: attach-source}]
[INFO] Building jar: C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT-sources.jar
[INFO] Preparing checkstyle:check
[INFO] [checkstyle:checkstyle]
[WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!
[INFO] [checkstyle:check {execution: verify-style}]
[INFO] [install:install]
[INFO] Installing C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT.jar to C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jar
[INFO] Installing C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT-sources.jar to C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT-sources.jar
[INFO] ------------------------------------------------------------------------
[INFO] Building Tomahawk 1.2 Core
[INFO]    task-segment: [install]
[INFO] ------------------------------------------------------------------------
[INFO] [myfaces-builder:unpack {execution: unpack-tomahawk}]
[INFO] Adding: org/apache/myfaces/component/MethodBindingToMethodExpression.java
[INFO] Adding: org/apache/myfaces/component/MethodExpressionToMethodBinding.java
[INFO] Adding: org/apache/myfaces/converter/ConverterTag.java
[INFO] Adding: org/apache/myfaces/custom/aliasbean/Alias.java
[INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBean.java
[INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBeansScope.java
[INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBeansScopeTag.java
[INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBeanTag.java
[INFO] Adding: org/apache/myfaces/custom/buffer/AbstractBuffer.java
[INFO] Adding: org/apache/myfaces/custom/htmlTag/AbstractHtmlTag.java
[INFO] Adding: org/apache/myfaces/custom/htmlTag/HtmlTagRenderer.java
[INFO] Adding: org/apache/myfaces/custom/navigation/AbstractHtmlPanelNavigation.java
[INFO] Adding: org/apache/myfaces/custom/navmenu/AbstractUINavigationMenuItem.java
[INFO] Adding: org/apache/myfaces/custom/savestate/UISaveState.java
[INFO] Adding: org/apache/myfaces/custom/schedule/UISchedule.java
[INFO] Adding: org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java
[INFO] Adding: org/apache/myfaces/custom/tree/taglib/AbstractTreeTag.java
[INFO] Adding: org/apache/myfaces/custom/updateactionlistener/UpdateActionListenerTag.java
[INFO] Adding: org/apache/myfaces/renderkit/html/ext/HtmlCheckboxRenderer.java
[INFO] Adding: org/apache/myfaces/renderkit/html/ext/HtmlMessageRenderer.java
[INFO] Adding: org/apache/myfaces/renderkit/html/ext/HtmlRadioRenderer.java
[INFO] Adding: org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java
[INFO] Adding: org/apache/myfaces/tomahawk/application/jsp/JspTilesTwoViewHandlerImpl.java
[INFO] Adding: org/apache/myfaces/tomahawk/application/jsp/ViewResponseWrapper.java
[INFO] Adding: org/apache/myfaces/validator/ValidatorBase.java
[INFO] Adding: org/apache/myfaces/validator/ValidatorBaseTag.java
[INFO] Configured Artifact: org.apache.myfaces.tomahawk:tomahawk:sources:1.1.9-SNAPSHOT:jar
Artifact: tomahawk-1.1.9-SNAPSHOT-sources.jar have META-INF/myfaces-metadata.xml
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlCommandButton
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlCommandButtonTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlCommandLink
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlCommandLinkTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlDataTable
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlDataTableTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlGraphicImage
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlGraphicImageTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlInputHidden
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlInputHiddenTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlInputSecret
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlInputSecretTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlInputText
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlInputTextarea
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextareaTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlMessage
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlMessageTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlMessages
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlMessagesTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlOutputLabel
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlOutputLabelTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlOutputText
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlOutputTextTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlPanelGrid
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGridTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlPanelGroup
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGroupTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectBooleanCheckbox
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectBooleanCheckboxTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectManyCheckbox
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyCheckboxTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectManyListbox
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyListboxTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectManyMenu
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyMenuTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectOneListbox
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneListboxTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectOneMenu
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneMenuTag
[INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlSelectOneRadio
[INFO] Adding Generated: org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneRadioTag
[INFO] Adding Generated: org.apache.myfaces.custom.buffer.Buffer
[INFO] Adding Generated: org.apache.myfaces.custom.buffer.BufferTag
[INFO] Adding Generated: org.apache.myfaces.custom.calendar.HtmlInputCalendar
[INFO] Adding Generated: org.apache.myfaces.custom.calendar.HtmlInputCalendarTag
[INFO] Adding Generated: org.apache.myfaces.custom.captcha.CAPTCHAComponent
[INFO] Adding Generated: org.apache.myfaces.custom.captcha.CAPTCHATag
[INFO] Adding Generated: org.apache.myfaces.custom.checkbox.HtmlCheckbox
[INFO] Adding Generated: org.apache.myfaces.custom.checkbox.HtmlCheckboxTag
[INFO] Adding Generated: org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanel
[INFO] Adding Generated: org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanelTag
[INFO] Adding Generated: org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLink
[INFO] Adding Generated: org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLinkTag
[INFO] Adding Generated: org.apache.myfaces.custom.column.HtmlSimpleColumn
[INFO] Adding Generated: org.apache.myfaces.custom.column.HtmlColumnTag
[INFO] Adding Generated: org.apache.myfaces.custom.crosstable.HtmlColumns
[INFO] Adding Generated: org.apache.myfaces.custom.crosstable.HtmlColumnsTag
[INFO] Adding Generated: org.apache.myfaces.custom.datalist.HtmlDataList
[INFO] Adding Generated: org.apache.myfaces.custom.datalist.HtmlDataListTag
[INFO] Adding Generated: org.apache.myfaces.custom.datascroller.HtmlDataScroller
[INFO] Adding Generated: org.apache.myfaces.custom.datascroller.HtmlDataScrollerTag
[INFO] Adding Generated: org.apache.myfaces.custom.date.HtmlInputDate
[INFO] Adding Generated: org.apache.myfaces.custom.date.HtmlInputDateTag
[INFO] Adding Generated: org.apache.myfaces.custom.htmlTag.HtmlTag
[INFO] Adding Generated: org.apache.myfaces.custom.htmlTag.HtmlTagTag
[INFO] Adding Generated: org.apache.myfaces.custom.div.Div
[INFO] Adding Generated: org.apache.myfaces.custom.div.DivTag
[INFO] Adding Generated: org.apache.myfaces.custom.document.AbstractDocumentTag
[INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentBody
[INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentBodyTag
[INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentTag
[INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentHeadTag
[INFO] Adding Generated: org.apache.myfaces.custom.dojo.DojoInitializerTag
[INFO] Adding Generated: org.apache.myfaces.custom.fieldset.Fieldset
[INFO] Adding Generated: org.apache.myfaces.custom.fieldset.FieldsetTag
[INFO] Adding Generated: org.apache.myfaces.custom.fileupload.HtmlInputFileUpload
[INFO] Adding Generated: org.apache.myfaces.custom.fileupload.HtmlInputFileUploadTag
[INFO] Adding Generated: org.apache.myfaces.custom.inputHtml.InputHtmlTag
[INFO] Adding Generated: org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelp
[INFO] Adding Generated: org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelpTag
[INFO] Adding Generated: org.apache.myfaces.custom.jslistener.JsValueChangeListener
[INFO] Adding Generated: org.apache.myfaces.custom.jslistener.JsValueChangeListenerTag
[INFO] Adding Generated: org.apache.myfaces.custom.jsvalueset.HtmlJsValueSet
[INFO] Adding Generated: org.apache.myfaces.custom.jsvalueset.HtmlJsValueSetTag
[INFO] Adding Generated: org.apache.myfaces.custom.layout.HtmlPanelLayout
[INFO] Adding Generated: org.apache.myfaces.custom.layout.HtmlPanelLayoutTag
[INFO] Adding Generated: org.apache.myfaces.custom.navigation.HtmlCommandNavigation
[INFO] Adding Generated: org.apache.myfaces.custom.navigation.HtmlCommandNavigationTag
[INFO] Adding Generated: org.apache.myfaces.custom.navigation.HtmlPanelNavigation
[INFO] Adding Generated: org.apache.myfaces.custom.navigation.HtmlPanelNavigationTag
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItems
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemsTag
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.UINavigationMenuItem
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemTag
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItem
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItemTag
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenu
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenuTag
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.jscookmenu.HtmlCommandJSCookMenu
[INFO] Adding Generated: org.apache.myfaces.custom.navmenu.jscookmenu.HtmlJSCookMenuTag
[INFO] Adding Generated: org.apache.myfaces.custom.newspaper.HtmlNewspaperTable
[INFO] Adding Generated: org.apache.myfaces.custom.newspaper.HtmlNewspaperTableTag
[INFO] Adding Generated: org.apache.myfaces.custom.panelstack.HtmlPanelStack
[INFO] Adding Generated: org.apache.myfaces.custom.panelstack.PanelStackTag
[INFO] Adding Generated: org.apache.myfaces.custom.picklist.HtmlSelectManyPicklist
[INFO] Adding Generated: org.apache.myfaces.custom.picklist.HtmlSelectManyPicklistTag
[INFO] Adding Generated: org.apache.myfaces.custom.popup.HtmlPopup
[INFO] Adding Generated: org.apache.myfaces.custom.popup.HtmlPopupTag
[INFO] Adding Generated: org.apache.myfaces.custom.radio.HtmlRadio
[INFO] Adding Generated: org.apache.myfaces.custom.radio.HtmlRadioTag
[INFO] Adding Generated: org.apache.myfaces.custom.savestate.SaveStateTag
[INFO] Adding Generated: org.apache.myfaces.custom.schedule.UIScheduleBase
[INFO] Adding Generated: org.apache.myfaces.custom.schedule.HtmlSchedule
[INFO] Adding Generated: org.apache.myfaces.custom.schedule.ScheduleTag
[INFO] Adding Generated: org.apache.myfaces.custom.selectOneCountry.SelectOneCountry
[INFO] Adding Generated: org.apache.myfaces.custom.selectOneCountry.SelectOneCountryTag
[INFO] Adding Generated: org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguage
[INFO] Adding Generated: org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageTag
[INFO] Adding Generated: org.apache.myfaces.custom.selectOneRow.SelectOneRow
[INFO] Adding Generated: org.apache.myfaces.custom.selectOneRow.SelectOneRowTag
[INFO] Adding Generated: org.apache.myfaces.custom.selectitems.UISelectItems
[INFO] Adding Generated: org.apache.myfaces.custom.selectitems.SelectItemsTag
[INFO] Adding Generated: org.apache.myfaces.custom.sortheader.HtmlCommandSortHeader
[INFO] Adding Generated: org.apache.myfaces.custom.sortheader.HtmlCommandSortHeaderTag
[INFO] Adding Generated: org.apache.myfaces.custom.stylesheet.Stylesheet
[INFO] Adding Generated: org.apache.myfaces.custom.stylesheet.StylesheetTag
[INFO] Adding Generated: org.apache.myfaces.custom.subform.SubForm
[INFO] Adding Generated: org.apache.myfaces.custom.subform.SubFormTag
[INFO] Adding Generated: org.apache.myfaces.custom.swapimage.HtmlSwapImage
[INFO] Adding Generated: org.apache.myfaces.custom.swapimage.HtmlSwapImageTag
[INFO] Adding Generated: org.apache.myfaces.custom.tabbedpane.HtmlPanelTab
[INFO] Adding Generated: org.apache.myfaces.custom.tabbedpane.HtmlPanelTabTag
[INFO] Adding Generated: org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPane
[INFO] Adding Generated: org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPaneTag
[INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleGroup
[INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleGroupTag
[INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleLink
[INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleLinkTag
[INFO] Adding Generated: org.apache.myfaces.custom.toggle.TogglePanel
[INFO] Adding Generated: org.apache.myfaces.custom.toggle.TogglePanelTag
[INFO] Adding Generated: org.apache.myfaces.custom.transform.XmlTransform
[INFO] Adding Generated: org.apache.myfaces.custom.transform.XmlTransformTag
[INFO] Adding Generated: org.apache.myfaces.custom.tree.HtmlTreeCheckbox
[INFO] Adding Generated: org.apache.myfaces.custom.tree.taglib.TreeCheckboxTag
[INFO] Adding Generated: org.apache.myfaces.custom.tree.HtmlTreeImageCommandLink
[INFO] Adding Generated: org.apache.myfaces.custom.tree.taglib.TreeTag
[INFO] Adding Generated: org.apache.myfaces.custom.tree.taglib.TreeColumnTag
[INFO] Adding Generated: org.apache.myfaces.custom.tree2.HtmlTree
[INFO] Adding Generated: org.apache.myfaces.custom.tree2.TreeTag
[INFO] Adding Generated: org.apache.myfaces.custom.creditcardvalidator.CreditCardValidator
[INFO] Adding Generated: org.apache.myfaces.custom.creditcardvalidator.ValidateCreditCardTag
[INFO] Adding Generated: org.apache.myfaces.custom.emailvalidator.ValidateEmailTag
[INFO] Adding Generated: org.apache.myfaces.custom.equalvalidator.EqualValidator
[INFO] Adding Generated: org.apache.myfaces.custom.equalvalidator.ValidateEqualTag
[INFO] Adding Generated: org.apache.myfaces.custom.regexprvalidator.RegExprValidator
[INFO] Adding Generated: org.apache.myfaces.custom.regexprvalidator.ValidateRegExprTag
[INFO] Unpacking C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT-sources.jarto
 C:\projects\tomahawk\core12\target\tomahawk11_sources
with Includes **/*.java and excludes:**/*.class,**/META-INF/**,org/apache/myfaces/shared_tomahawk/**/*.java,org/apache/myfaces/component/MethodBindingToMethodExpression.java,org/apache/myfaces/component/MethodExpressionToMethodBinding.java,org/apache/myfaces/converter/ConverterTag.java,org/apache/myfaces/custom/aliasbean/Alias.java,org/apache/myfaces/custom/aliasbean/AliasBean.java,org/apache/myfaces/custom/aliasbean/AliasBeansScope.java,org/apache/myfaces/custom/aliasbean/AliasBeansScopeTag.java,org/apache/myfaces/custom/aliasbean/AliasBeanTag.java,org/apache/myfaces/custom/buffer/AbstractBuffer.java,org/apache/myfaces/custom/htmlTag/AbstractHtmlTag.java,org/apache/myfaces/custom/htmlTag/HtmlTagRenderer.java,org/apache/myfaces/custom/navigation/AbstractHtmlPanelNavigation.java,org/apache/myfaces/custom/navmenu/AbstractUINavigationMenuItem.java,org/apache/myfaces/custom/savestate/UISaveState.java,org/apache/myfaces/custom/schedule/UISchedule.java,org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java,org/apache/myfaces/custom/tree/taglib/AbstractTreeTag.java,org/apache/myfaces/custom/updateactionlistener/UpdateActionListenerTag.java,org/apache/myfaces/renderkit/html/ext/HtmlCheckboxRenderer.java,org/apache/myfaces/renderkit/html/ext/HtmlMessageRenderer.java,org/apache/myfaces/renderkit/html/ext/HtmlRadioRenderer.java,org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java,org/apache/myfaces/tomahawk/application/jsp/JspTilesTwoViewHandlerImpl.java,org/apache/myfaces/tomahawk/application/jsp/ViewResponseWrapper.java,org/apache/myfaces/validator/ValidatorBase.java,org/apache/myfaces/validator/ValidatorBaseTag.java,org/apache/myfaces/component/html/ext/HtmlCommandButton.java,org/apache/myfaces/generated/taglib/html/ext/HtmlCommandButtonTag.java,org/apache/myfaces/component/html/ext/HtmlCommandLink.java,org/apache/myfaces/generated/taglib/html/ext/HtmlCommandLinkTag.java,org/apache/myfaces/component/html/ext/HtmlDataTable.java,org/apache/myfaces/generated/taglib/html/ext/HtmlDataTableTag.java,org/apache/myfaces/component/html/ext/HtmlGraphicImage.java,org/apache/myfaces/generated/taglib/html/ext/HtmlGraphicImageTag.java,org/apache/myfaces/component/html/ext/HtmlInputHidden.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputHiddenTag.java,org/apache/myfaces/component/html/ext/HtmlInputSecret.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputSecretTag.java,org/apache/myfaces/component/html/ext/HtmlInputText.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputTextTag.java,org/apache/myfaces/component/html/ext/HtmlInputTextarea.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputTextareaTag.java,org/apache/myfaces/component/html/ext/HtmlMessage.java,org/apache/myfaces/generated/taglib/html/ext/HtmlMessageTag.java,org/apache/myfaces/component/html/ext/HtmlMessages.java,org/apache/myfaces/generated/taglib/html/ext/HtmlMessagesTag.java,org/apache/myfaces/component/html/ext/HtmlOutputLabel.java,org/apache/myfaces/generated/taglib/html/ext/HtmlOutputLabelTag.java,org/apache/myfaces/component/html/ext/HtmlOutputText.java,org/apache/myfaces/generated/taglib/html/ext/HtmlOutputTextTag.java,org/apache/myfaces/component/html/ext/HtmlPanelGrid.java,org/apache/myfaces/generated/taglib/html/ext/HtmlPanelGridTag.java,org/apache/myfaces/component/html/ext/HtmlPanelGroup.java,org/apache/myfaces/generated/taglib/html/ext/HtmlPanelGroupTag.java,org/apache/myfaces/component/html/ext/HtmlSelectBooleanCheckbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectBooleanCheckboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectManyCheckbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectManyCheckboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectManyListbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectManyListboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectManyMenu.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectManyMenuTag.java,org/apache/myfaces/component/html/ext/HtmlSelectOneListbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectOneListboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectOneMenu.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectOneMenuTag.java,org/apache/myfaces/component/html/ext/HtmlSelectOneRadio.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectOneRadioTag.java,org/apache/myfaces/custom/buffer/Buffer.java,org/apache/myfaces/custom/buffer/BufferTag.java,org/apache/myfaces/custom/calendar/HtmlInputCalendar.java,org/apache/myfaces/custom/calendar/HtmlInputCalendarTag.java,org/apache/myfaces/custom/captcha/CAPTCHAComponent.java,org/apache/myfaces/custom/captcha/CAPTCHATag.java,org/apache/myfaces/custom/checkbox/HtmlCheckbox.java,org/apache/myfaces/custom/checkbox/HtmlCheckboxTag.java,org/apache/myfaces/custom/collapsiblepanel/HtmlCollapsiblePanel.java,org/apache/myfaces/custom/collapsiblepanel/HtmlCollapsiblePanelTag.java,org/apache/myfaces/custom/collapsiblepanel/HtmlHeaderLink.java,org/apache/myfaces/custom/collapsiblepanel/HtmlHeaderLinkTag.java,org/apache/myfaces/custom/column/HtmlSimpleColumn.java,org/apache/myfaces/custom/column/HtmlColumnTag.java,org/apache/myfaces/custom/crosstable/HtmlColumns.java,org/apache/myfaces/custom/crosstable/HtmlColumnsTag.java,org/apache/myfaces/custom/datalist/HtmlDataList.java,org/apache/myfaces/custom/datalist/HtmlDataListTag.java,org/apache/myfaces/custom/datascroller/HtmlDataScroller.java,org/apache/myfaces/custom/datascroller/HtmlDataScrollerTag.java,org/apache/myfaces/custom/date/HtmlInputDate.java,org/apache/myfaces/custom/date/HtmlInputDateTag.java,org/apache/myfaces/custom/htmlTag/HtmlTag.java,org/apache/myfaces/custom/htmlTag/HtmlTagTag.java,org/apache/myfaces/custom/div/Div.java,org/apache/myfaces/custom/div/DivTag.java,org/apache/myfaces/custom/document/AbstractDocumentTag.java,org/apache/myfaces/custom/document/DocumentBody.java,org/apache/myfaces/custom/document/DocumentBodyTag.java,org/apache/myfaces/custom/document/DocumentTag.java,org/apache/myfaces/custom/document/DocumentHeadTag.java,org/apache/myfaces/custom/dojo/DojoInitializerTag.java,org/apache/myfaces/custom/fieldset/Fieldset.java,org/apache/myfaces/custom/fieldset/FieldsetTag.java,org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java,org/apache/myfaces/custom/fileupload/HtmlInputFileUploadTag.java,org/apache/myfaces/custom/inputHtml/InputHtmlTag.java,org/apache/myfaces/custom/inputTextHelp/HtmlInputTextHelp.java,org/apache/myfaces/custom/inputTextHelp/HtmlInputTextHelpTag.java,org/apache/myfaces/custom/jslistener/JsValueChangeListener.java,org/apache/myfaces/custom/jslistener/JsValueChangeListenerTag.java,org/apache/myfaces/custom/jsvalueset/HtmlJsValueSet.java,org/apache/myfaces/custom/jsvalueset/HtmlJsValueSetTag.java,org/apache/myfaces/custom/layout/HtmlPanelLayout.java,org/apache/myfaces/custom/layout/HtmlPanelLayoutTag.java,org/apache/myfaces/custom/navigation/HtmlCommandNavigation.java,org/apache/myfaces/custom/navigation/HtmlCommandNavigationTag.java,org/apache/myfaces/custom/navigation/HtmlPanelNavigation.java,org/apache/myfaces/custom/navigation/HtmlPanelNavigationTag.java,org/apache/myfaces/custom/navmenu/HtmlNavigationMenuItems.java,org/apache/myfaces/custom/navmenu/HtmlNavigationMenuItemsTag.java,org/apache/myfaces/custom/navmenu/UINavigationMenuItem.java,org/apache/myfaces/custom/navmenu/HtmlNavigationMenuItemTag.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlCommandNavigationItem.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlCommandNavigationItemTag.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlPanelNavigationMenu.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlPanelNavigationMenuTag.java,org/apache/myfaces/custom/navmenu/jscookmenu/HtmlCommandJSCookMenu.java,org/apache/myfaces/custom/navmenu/jscookmenu/HtmlJSCookMenuTag.java,org/apache/myfaces/custom/newspaper/HtmlNewspaperTable.java,org/apache/myfaces/custom/newspaper/HtmlNewspaperTableTag.java,org/apache/myfaces/custom/panelstack/HtmlPanelStack.java,org/apache/myfaces/custom/panelstack/PanelStackTag.java,org/apache/myfaces/custom/picklist/HtmlSelectManyPicklist.java,org/apache/myfaces/custom/picklist/HtmlSelectManyPicklistTag.java,org/apache/myfaces/custom/popup/HtmlPopup.java,org/apache/myfaces/custom/popup/HtmlPopupTag.java,org/apache/myfaces/custom/radio/HtmlRadio.java,org/apache/myfaces/custom/radio/HtmlRadioTag.java,org/apache/myfaces/custom/savestate/SaveStateTag.java,org/apache/myfaces/custom/schedule/UIScheduleBase.java,org/apache/myfaces/custom/schedule/HtmlSchedule.java,org/apache/myfaces/custom/schedule/ScheduleTag.java,org/apache/myfaces/custom/selectOneCountry/SelectOneCountry.java,org/apache/myfaces/custom/selectOneCountry/SelectOneCountryTag.java,org/apache/myfaces/custom/selectOneLanguage/SelectOneLanguage.java,org/apache/myfaces/custom/selectOneLanguage/SelectOneLanguageTag.java,org/apache/myfaces/custom/selectOneRow/SelectOneRow.java,org/apache/myfaces/custom/selectOneRow/SelectOneRowTag.java,org/apache/myfaces/custom/selectitems/UISelectItems.java,org/apache/myfaces/custom/selectitems/SelectItemsTag.java,org/apache/myfaces/custom/sortheader/HtmlCommandSortHeader.java,org/apache/myfaces/custom/sortheader/HtmlCommandSortHeaderTag.java,org/apache/myfaces/custom/stylesheet/Stylesheet.java,org/apache/myfaces/custom/stylesheet/StylesheetTag.java,org/apache/myfaces/custom/subform/SubForm.java,org/apache/myfaces/custom/subform/SubFormTag.java,org/apache/myfaces/custom/swapimage/HtmlSwapImage.java,org/apache/myfaces/custom/swapimage/HtmlSwapImageTag.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTab.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTabTag.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTabbedPane.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTabbedPaneTag.java,org/apache/myfaces/custom/toggle/ToggleGroup.java,org/apache/myfaces/custom/toggle/ToggleGroupTag.java,org/apache/myfaces/custom/toggle/ToggleLink.java,org/apache/myfaces/custom/toggle/ToggleLinkTag.java,org/apache/myfaces/custom/toggle/TogglePanel.java,org/apache/myfaces/custom/toggle/TogglePanelTag.java,org/apache/myfaces/custom/transform/XmlTransform.java,org/apache/myfaces/custom/transform/XmlTransformTag.java,org/apache/myfaces/custom/tree/HtmlTreeCheckbox.java,org/apache/myfaces/custom/tree/taglib/TreeCheckboxTag.java,org/apache/myfaces/custom/tree/HtmlTreeImageCommandLink.java,org/apache/myfaces/custom/tree/taglib/TreeTag.java,org/apache/myfaces/custom/tree/taglib/TreeColumnTag.java,org/apache/myfaces/custom/tree2/HtmlTree.java,org/apache/myfaces/custom/tree2/TreeTag.java,org/apache/myfaces/custom/creditcardvalidator/CreditCardValidator.java,org/apache/myfaces/custom/creditcardvalidator/ValidateCreditCardTag.java,org/apache/myfaces/custom/emailvalidator/ValidateEmailTag.java,org/apache/myfaces/custom/equalvalidator/EqualValidator.java,org/apache/myfaces/custom/equalvalidator/ValidateEqualTag.java,org/apache/myfaces/custom/regexprvalidator/RegExprValidator.java,org/apache/myfaces/custom/regexprvalidator/ValidateRegExprTag.java
[INFO] [myfaces-builder:build-metadata {execution: default}]
Artifact: myfaces-api-1.2.6.jar have META-INF/myfaces-metadata.xml
[INFO] [myfaces-builder:make-config {execution: makefacesconfig}]
06.05.2009 21:19:20 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:20 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:20 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core12\src\main\conf\META-INF\faces-config-base.xml
[INFO] [myfaces-builder:make-components {execution: makecomp}]
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core12\src\main\resources\META-INF\componentClass12.vm
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.buffer.Buffer
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.htmlTag.HtmlTag
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navigation.HtmlPanelNavigation
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeComponentsMojo generateComponents
INFO: Generating component class:org.apache.myfaces.custom.navmenu.UINavigationMenuItem
[INFO] [myfaces-builder:make-validators {execution: makeval}]
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core12\src\main\resources\META-INF\validatorClass12.vm
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:21 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core12\src\main\resources\META-INF\tagClass12.vm
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SubviewTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.ViewTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.ParamTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SelectItemTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.core.SelectItemsTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputHiddenTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlColumnTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlCommandButtonTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlCommandLinkTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlDataTableTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlFormTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlGraphicImageTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputSecretTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputTextTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlInputTextareaTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlMessageTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlMessagesTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputFormatTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputLabelTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputLinkTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlOutputTextTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlPanelGridTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlPanelGroupTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectBooleanCheckboxTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyCheckboxTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyListboxTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectManyMenuTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneListboxTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneMenuTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.shared_tomahawk.taglib.html.HtmlSelectOneRadioTag
[INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core12\src\main\resources\META-INF\tagClass12.vm
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.buffer.BufferTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.htmlTag.HtmlTagTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navigation.HtmlPanelNavigationTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemTag
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeTagsMojo generateComponents
INFO: Generating tag class:org.apache.myfaces.custom.savestate.SaveStateTag
[INFO] [myfaces-builder:make-validator-tags {execution: make_validator_tags_tomahawk}]
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeValidatorTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core12\src\main\resources\META-INF\tagValidatorClass12.vm
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:22 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] [myfaces-builder:make-converter-tags {execution: make_validator_tags_tomahawk}]
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.MakeConverterTagsMojo initVelocity
INFO: Using template from file loader: C:\projects\tomahawk\core12\src\main\resources\META-INF\tagConverterClass12.vm
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] [myfaces-builder:make-config {execution: maketomahawktld}]
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core12\src\main\conf\META-INF\tomahawk-base.tld
[INFO] [myfaces-builder:make-config {execution: maketomahawktaglib}]
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: FileResourceLoader : adding path 'C:\projects\tomahawk\core12\src\main\resources\META-INF'
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: RelativeClasspathResourceLoader : adding path 'META-INF'
06.05.2009 21:19:23 org.apache.myfaces.buildtools.maven2.plugin.builder.utils.ConsoleLogSystem log
INFO: Velocimacro : allowInlineLocal = true : VMs defined inline will be local to their defining template only.
[INFO] using base content file: C:\projects\tomahawk\core12\src\main\conf\META-INF\facelets-taglib-base.xml
[INFO] [build-helper:add-source {execution: add-source}]
[INFO] Source directory: C:\projects\tomahawk\core12\target\shared_sources added.
[INFO] [dependency:unpack {execution: unpack-shared-impl-sources}]
[INFO] Configured Artifact: org.apache.myfaces.shared:myfaces-shared-tomahawk:sources:?:jar
[INFO] Unpacking C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\shared\myfaces-shared-tomahawk\3.0.5\myfaces-shared-tomahawk-3.0.5-sources.jarto
 C:\projects\tomahawk\core12\target\shared_sources
with Includes null and excludes:META-INF/*.*
[INFO] [myfaces-builder:unpack {execution: unpack-tomahawk-resources}]
[INFO] Adding: META-INF/componentClass12.vm
[INFO] Adding: META-INF/facelets-taglib.vm
[INFO] Adding: META-INF/faces-config12.vm
[INFO] Adding: META-INF/LICENSE.txt
[INFO] Adding: META-INF/licenses/dojo-LICENSE.TXT
[INFO] Adding: META-INF/licenses/i18n-LICENSE.txt
[INFO] Adding: META-INF/licenses/jscookmenu-LICENSE.txt
[INFO] Adding: META-INF/licenses/kupu-LICENSE.txt
[INFO] Adding: META-INF/licenses/prototype-LICENSE.txt
[INFO] Adding: META-INF/licenses/scriptaculous-LICENSE.txt
[INFO] Adding: META-INF/NOTICE.txt
[INFO] Adding: META-INF/tagClass12.vm
[INFO] Adding: META-INF/tagConverterClass12.vm
[INFO] Adding: META-INF/tagValidatorClass12.vm
[INFO] Adding: META-INF/tomahawk12.vm
[INFO] Adding: META-INF/validatorClass12.vm
[INFO] Adding: META-INF/xdoc-component.vm
[INFO] Adding: META-INF/xdoc-converter.vm
[INFO] Adding: META-INF/xdoc-tag.vm
[INFO] Adding: META-INF/xdoc-validator.vm
[INFO] Configured Artifact: org.apache.myfaces.tomahawk:tomahawk:1.1.9-SNAPSHOT:jar
[INFO] Unpacking C:\Dokumente und Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jarto
 C:\projects\tomahawk\core12\target\tomahawk11_resources
with Includes null and excludes:**/*.class,**/META-INF/**,META-INF/componentClass12.vm,META-INF/facelets-taglib.vm,META-INF/faces-config12.vm,META-INF/LICENSE.txt,META-INF/licenses/dojo-LICENSE.TXT,META-INF/licenses/i18n-LICENSE.txt,META-INF/licenses/jscookmenu-LICENSE.txt,META-INF/licenses/kupu-LICENSE.txt,META-INF/licenses/prototype-LICENSE.txt,META-INF/licenses/scriptaculous-LICENSE.txt,META-INF/NOTICE.txt,META-INF/tagClass12.vm,META-INF/tagConverterClass12.vm,META-INF/tagValidatorClass12.vm,META-INF/tomahawk12.vm,META-INF/validatorClass12.vm,META-INF/xdoc-component.vm,META-INF/xdoc-converter.vm,META-INF/xdoc-tag.vm,META-INF/xdoc-validator.vm
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 191 source files to C:\projects\tomahawk\core12\target\classes
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[26,37] cannot find symbol
symbol  : class HtmlTree
location: package org.apache.myfaces.custom.tree

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[27,43] package org.apache.myfaces.custom.tree.model does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[28,43] package org.apache.myfaces.custom.tree.model does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[29,43] package org.apache.myfaces.custom.tree.model does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[35,35] cannot find symbol
symbol  : class AlignProperty
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[36,35] cannot find symbol
symbol  : class DataProperties
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[37,35] cannot find symbol
symbol  : class EventAware
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[38,35] cannot find symbol
symbol  : class PanelProperties
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[39,35] cannot find symbol
symbol  : class UniversalProperties
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[59,42] cannot find symbol
symbol: class AlignProperty
        extends HtmlPanelGroup implements AlignProperty,

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,8] cannot find symbol
symbol: class UniversalProperties
        UniversalProperties, EventAware, DataProperties, PanelProperties

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,29] cannot find symbol
symbol: class EventAware
        UniversalProperties, EventAware, DataProperties, PanelProperties

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,41] cannot find symbol
symbol: class DataProperties
        UniversalProperties, EventAware, DataProperties, PanelProperties

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,57] cannot find symbol
symbol: class PanelProperties
        UniversalProperties, EventAware, DataProperties, PanelProperties

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[40,35] cannot find symbol
symbol  : class UserRoleAware
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[41,35] cannot find symbol
symbol  : class UserRoleUtils
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[42,52] package org.apache.myfaces.custom.navmenu.htmlnavmenu does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[43,52] package org.apache.myfaces.custom.navmenu.htmlnavmenu does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[60,4] cannot find symbol
symbol: class UserRoleAware
    UserRoleAware, ActionSource {

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[23,35] cannot find symbol
symbol  : class UserRoleUtils
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[26,44] package org.apache.myfaces.component.html.ext does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[27,41] package org.apache.myfaces.custom.checkbox does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[388,67] cannot find symbol
symbol  : class HtmlCheckbox
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[40,44] package org.apache.myfaces.component.html.ext does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[41,44] package org.apache.myfaces.component.html.ext does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[24,35] cannot find symbol
symbol  : class NewspaperTable
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[25,44] package org.apache.myfaces.component.html.ext does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[26,39] package org.apache.myfaces.custom.column does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[27,39] package org.apache.myfaces.custom.column does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[28,43] package org.apache.myfaces.custom.crosstable does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[29,45] package org.apache.myfaces.renderkit.html.util does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[30,45] package org.apache.myfaces.renderkit.html.util does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[31,45] package org.apache.myfaces.renderkit.html.util does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[312,35] cannot find symbol
symbol  : class HtmlDataTable
location: class org.apache.myfaces.renderkit.html.ext.HtmlTableRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[978,69] cannot find symbol
symbol  : class HtmlDataTable
location: class org.apache.myfaces.renderkit.html.ext.HtmlTableRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\HtmlTagRenderer.java:[30,45] package org.apache.myfaces.component.html.util does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[40,47] package org.apache.myfaces.custom.schedule.model does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[41,47] package org.apache.myfaces.custom.schedule.model does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[51,66] cannot find symbol
symbol  : class UIScheduleBase
location: package org.apache.myfaces.custom.schedule

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[77,12] cannot find symbol
symbol  : class ScheduleEntry
location: class org.apache.myfaces.custom.schedule.UISchedule

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[154,14] cannot find symbol
symbol  : class ScheduleEntry
location: class org.apache.myfaces.custom.schedule.UISchedule

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[365,11] cannot find symbol
symbol  : class ScheduleEntry
location: class org.apache.myfaces.custom.schedule.UISchedule

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[458,37] cannot find symbol
symbol  : class ScheduleEntry
location: class org.apache.myfaces.custom.schedule.UISchedule

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[26,35] cannot find symbol
symbol  : class ForceIdAware
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[27,35] cannot find symbol
symbol  : class StyleAware
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[28,35] cannot find symbol
symbol  : class UserRoleAware
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[29,35] cannot find symbol
symbol  : class UserRoleUtils
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[30,45] package org.apache.myfaces.component.html.util does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[63,15] cannot find symbol
symbol: class UserRoleAware
    implements UserRoleAware, StyleAware, ForceIdAware

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[63,30] cannot find symbol
symbol: class StyleAware
    implements UserRoleAware, StyleAware, ForceIdAware

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[63,42] cannot find symbol
symbol: class ForceIdAware
    implements UserRoleAware, StyleAware, ForceIdAware

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlRadioRenderer.java:[33,35] cannot find symbol
symbol  : class UserRoleUtils
location: package org.apache.myfaces.component

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlRadioRenderer.java:[34,38] package org.apache.myfaces.custom.radio does not exist

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlRadioRenderer.java:[95,58] cannot find symbol
symbol  : class HtmlRadio
location: class org.apache.myfaces.renderkit.html.ext.HtmlRadioRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[77,12] cannot find symbol
symbol  : class TreeModel
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[77,35] cannot find symbol
symbol  : class TreeModel
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[81,32] cannot find symbol
symbol  : class DefaultTreeModel
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[86,8] cannot find symbol
symbol  : class HtmlTree
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[86,25] cannot find symbol
symbol  : class HtmlTree
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[90,12] cannot find symbol
symbol  : class TreeModel
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[93,36] cannot find symbol
symbol  : class TreePath
location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[109,33] cannot find symbol
symbol  : class HtmlCommandNavigation
location: class org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[111,16] cannot find symbol
symbol  : class HtmlCommandNavigation
location: class org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[111,54] cannot find symbol
symbol  : class HtmlCommandNavigation
location: class org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[115,20] cannot find symbol
symbol  : class HtmlCommandNavigation
location: class org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[115,55] cannot find symbol
symbol  : class HtmlCommandNavigation
location: class org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[284,13] cannot find symbol
symbol  : variable UserRoleUtils
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[318,35] cannot find symbol
symbol  : class HtmlPanelNavigationMenu
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[325,8] cannot find symbol
symbol  : class HtmlPanelNavigationMenu
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[325,40] cannot find symbol
symbol  : class HtmlPanelNavigationMenu
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[335,29] cannot find symbol
symbol  : class HtmlCommandNavigationItem
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[336,16] cannot find symbol
symbol  : class HtmlCommandNavigationItem
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[336,53] cannot find symbol
symbol  : class HtmlCommandNavigationItem
location: class org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\updateactionlistener\UpdateActionListenerTag.java:[127,16] cannot find symbol
symbol  : class UpdateActionListener
location: class org.apache.myfaces.custom.updateactionlistener.UpdateActionListenerTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\updateactionlistener\UpdateActionListenerTag.java:[127,46] cannot find symbol
symbol  : class UpdateActionListener
location: class org.apache.myfaces.custom.updateactionlistener.UpdateActionListenerTag

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\aliasbean\AliasBean.java:[319,29] cannot find symbol
symbol  : class FacesEventWrapper
location: class org.apache.myfaces.custom.aliasbean.AliasBean

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\aliasbean\AliasBean.java:[326,29] cannot find symbol
symbol  : class FacesEventWrapper
location: class org.apache.myfaces.custom.aliasbean.AliasBean

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\aliasbean\AliasBean.java:[328,41] cannot find symbol
symbol  : class FacesEventWrapper
location: class org.apache.myfaces.custom.aliasbean.AliasBean

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[83,33] cannot find symbol
symbol  : class HtmlCheckbox
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[85,43] cannot find symbol
symbol  : class HtmlCheckbox
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[368,34] cannot find symbol
symbol  : class HtmlSelectManyCheckbox
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[369,34] cannot find symbol
symbol  : class HtmlSelectManyCheckbox
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[454,13] cannot find symbol
symbol  : variable UserRoleUtils
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[466,35] cannot find symbol
symbol  : class HtmlCheckbox
location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[68,33] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[69,21] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[72,12] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[72,39] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[104,32] cannot find symbol
symbol  : class HtmlMessages
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[104,50] cannot find symbol
symbol  : class HtmlMessages
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[105,36] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[105,53] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[111,31] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[113,30] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[139,32] cannot find symbol
symbol  : class HtmlMessages
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[139,50] cannot find symbol
symbol  : class HtmlMessages
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[140,36] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[140,53] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[145,31] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer

C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[147,29] cannot find symbol
symbol  : class HtmlMessage
location: class org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer


[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2 minutes 46 seconds
[INFO] Finished at: Wed May 06 21:19:38 CEST 2009
[INFO] Final Memory: 36M/86M
[INFO] ------------------------------------------------------------------------

Re: Setting up tomahawk 1.2

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

The log reveals that "core" does not compile well in your machine, so
"core12" fails because it depends from core. The following lines:

[INFO] [myfaces-builder:make-components {execution: makecomp}]
[INFO] [myfaces-builder:make-validators {execution: makeval}]
[INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
[INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
[INFO] [myfaces-builder:make-validator-tags {execution:
make_validator_tags_tomahawk}]
[INFO] [myfaces-builder:make-converter-tags {execution:
make_validator_tags_tomahawk}]

In a normal execution it should be info messages about each generated file.
I can't reproduce this error on my machine, since everything works fine
here. Maybe something between myfaces-builder-plugin and your operative
systems make it fail. Try compile it on a different operative system.

regards

Leonardo Uribe

2009/5/6 Ganesh <ga...@j4fry.org>

> Hi,
>
> If I run mvn without further option I get java.lang.OutOfMemoryError: Java
> heap space, so I'm doing /set MAVEN_OPTS/=-Xmx1024m before running mvn
> install.
>
> I've tried mvn clean (BUILD SUCCESSFULL) and mvn install > log.txt (see
> attachment, BUILD FAILURE  ... is it ok to send attachments over the list?).
>
> Can you have a look at my log, maybe compare it to the one that is created
> on your machine or send me the output of mvn install > log.txt on your
> machine?
>
> Best Regards,
> Ganesh
>
> Leonardo Uribe schrieb:
>
>> Hi
>>
>> 2009/5/6 Ganesh <ganesh@j4fry.org <ma...@j4fry.org>>
>>
>>
>>    Hi Leonardo,
>>
>>    Currently I'm trying to set up the tomahawk project on my system
>>    to package tomahwak-1.1.9-SNAPSHOT.jar as well as
>>    tomahawk12-1.1.9-SNAPSHOT.jar. I've checked out the tomahawk trunk
>>    and run mvn. It works fine for
>>    core/target/tomahwak-1.1.9-SNAPSHOT.jar. When going for tomahawk12
>>    it fails. It unpacks the shared-sources and the tomahwak-1.1.9 jar
>>    but when compiling the tomahwak-1.1.9 classes aren't found on the
>>    build path:
>>
>>    [INFO] Configured Artifact:
>>    org.apache.myfaces.tomahawk:tomahawk:1.1.9-SNAPSHOT:jar
>>    [INFO] Unpacking C:\Dokumente und
>>
>>  Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jarto
>>    C:\projects\tomahawk\core12\target\tomahawk11_resources
>>    with Includes null and
>>
>>  excludes:**/*.class,**/META-INF/**,META-INF/componentClass12.vm,META-INF/facelets-taglib.vm,META-INF/faces-config12.vm,META-INF/LICENSE.txt,META-INF/licenses/dojo-LICENSE.TXT,META-INF/licenses/i18n-LICENSE.txt,META-INF/licenses/jscookmenu-LICENSE.txt,META-INF/licenses/kupu-LICENSE.txt,META-INF/licenses/prototype-LICENSE.txt,META-INF/licenses/scriptaculous-LICENSE.txt,META-INF/NOTICE.txt,META-INF/tagClass12.vm,META-INF/tagConverterClass12.vm,META-INF/tagValidatorClass12.vm,META-INF/tomahawk12.vm,META-INF/validatorClass12.vm,META-INF/xdoc-component.vm,META-INF/xdoc-converter.vm,META-INF/xdoc-tag.vm,META-INF/xdoc-validator.vm
>>    [INFO] [resources:resources]
>>    [INFO] Using default encoding to copy filtered resources.
>>    [INFO] [compiler:compile]
>>    [INFO] Compiling 187 source files to
>>    C:\projects\tomahawk\core12\target\classes
>>    [INFO]
>>
>>  ------------------------------------------------------------------------
>>    [ERROR] BUILD FAILURE
>>    [INFO]
>>
>>  ------------------------------------------------------------------------
>>    [INFO] Compilation failure
>>
>>
>>  C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[26,37]
>>    cannot find symbol
>>    symbol  : class HtmlTree
>>    location: package org.apache.myfaces.custom.tree
>>
>>    .... (many more errors, no classes from
>>    tomahawk-1.1.9-SNAPSHOT.jar are on the compile path)
>>
>>
>>    Do I have a problem with my maven version? I'm using Apache Maven
>>    2.1.0 (r755702; 2009-03-18 20:10:27+0100). Is there something else
>>    I need to set up in order to compile tomahawk12?
>>
>>
>> It should work, but I'm using maven 2.0.9. This behavior indicates that
>> something is not generated. I'll try with 2.1.0 to see what happens, but
>> there are no special set up required to compile tomahawk core12. Maybe try
>> mvn clean and then mvn install from tomahawk directory to compile everything
>> in order, because core12 uses core to get most of the code (in few word
>> core12 = some code from core + some specific code from core12 + shared 3.0.x
>> + regenerate everything for jsf 1.2)
>> regards
>>
>> Leonardo Uribe
>>
>>
>>    Best Regards,
>>    Ganesh
>>
>>
>>
> [INFO] Scanning for projects...
> [WARNING] Overriding profile: 'jsfri' (source: pom) with new instance from
> source: pom
> [INFO] Reactor build order:
> [INFO]   Tomahawk Project
> [INFO]   Tomahawk Core
> [INFO]   Tomahawk 1.2 Core
> [INFO]   Tomahawk Examples Project
> [INFO]   Tomahawk Examples: Blank
> [INFO]   Tomahawk Examples: Simple
> [INFO]   Tomahawk Examples: Tiles
> [INFO]   Tomahawk Examples: WAP
> [INFO]   Sandbox Project
> [INFO]   Sandbox Core
> [INFO]   Sandbox Core 12
> [INFO]   Sandbox Examples
> [INFO]   Sandbox15 Project
> [INFO]   Sandbox15 Core
> [INFO]   Sandbox15 Examples
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Tomahawk Project
> [INFO]    task-segment: [install]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [site:attach-descriptor]
> [INFO] Preparing checkstyle:check
> [INFO] Setting property: classpath.resource.loader.class =>
> 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] **************************************************************
> [INFO] Starting Jakarta Velocity v1.4
> [INFO] RuntimeInstance initializing.
> [INFO] Default Properties File:
> org\apache\velocity\runtime\defaults\velocity.properties
> [INFO] Default ResourceManager initializing. (class
> org.apache.velocity.runtime.resource.ResourceManagerImpl)
> [INFO] Resource Loader Instantiated:
> org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader
> [INFO] ClasspathResourceLoader : initialization starting.
> [INFO] ClasspathResourceLoader : initialization complete.
> [INFO] ResourceCache : initialized. (class
> org.apache.velocity.runtime.resource.ResourceCacheImpl)
> [INFO] Default ResourceManager initialization complete.
> [INFO] Loaded System Directive:
> org.apache.velocity.runtime.directive.Literal
> [INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
> [INFO] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
> [INFO] Loaded System Directive:
> org.apache.velocity.runtime.directive.Include
> [INFO] Loaded System Directive:
> org.apache.velocity.runtime.directive.Foreach
> [INFO] Created: 20 parsers.
> [INFO] Velocimacro : initialization starting.
> [INFO] Velocimacro : adding VMs from VM library template :
> VM_global_library.vm
> [ERROR] ResourceManager : unable to find resource 'VM_global_library.vm' in
> any resource loader.
> [INFO] Velocimacro : error using  VM library template VM_global_library.vm
> : org.apache.velocity.exception.ResourceNotFoundException: Unable to find
> resource 'VM_global_library.vm'
> [INFO] Velocimacro :  VM library template macro registration complete.
> [INFO] Velocimacro : allowInline = true : VMs can be defined inline in
> templates
> [INFO] Velocimacro : allowInlineToOverride = false : VMs defined inline may
> NOT replace previous VM definitions
> [INFO] Velocimacro : allowInlineLocal = false : VMs defined inline will be
>  global in scope if allowed.
> [INFO] Velocimacro : initialization complete.
> [INFO] Velocity successfully started.
> [INFO] [checkstyle:checkstyle]
> [INFO] Source directory does not exist - skipping report.
> [INFO] [checkstyle:check {execution: verify-style}]
> [INFO] Unable to perform checkstyle:check, unable to find
> checkstyle:checkstyle outputFile.
> [INFO] [install:install]
> [INFO] Installing C:\projects\tomahawk\target\pom-transformed.xml to
> C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk-project\1.1.9-SNAPSHOT\tomahawk-project-1.1.9-SNAPSHOT.pom
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Tomahawk Core
> [INFO]    task-segment: [install]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [buildnumber:create {execution: default}]
> [INFO] Storing buildNumber: 2009-05-06 10:20:23 +0200 at timestamp:
> 1241598023984
> Downloading:
> http://download.java.net/maven/1/cactus/poms/cactus-13-1.7.2.pom
> [INFO] Unable to find resource 'cactus:cactus:pom:13-1.7.2' in repository
> java.net (http://download.java.net/maven/1)
> Downloading:
> http://repo1.maven.org/maven2/cactus/cactus/13-1.7.2/cactus-13-1.7.2.pom
> [INFO] Unable to find resource 'cactus:cactus:pom:13-1.7.2' in repository
> central (http://repo1.maven.org/maven2)
> [INFO] [myfaces-builder:build-metadata {execution: default}]
> Artifact: myfaces-api-1.1.6.jar have META-INF/myfaces-metadata.xml
> [INFO] [myfaces-builder:make-config {execution: makefacesconfig}]
> [INFO] using base content file:
> C:\projects\tomahawk\core\src\main\conf\META-INF\faces-config-base.xml
> [INFO] [myfaces-builder:make-components {execution: makecomp}]
> [INFO] [myfaces-builder:make-validators {execution: makeval}]
> [INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
> [INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
> [INFO] [myfaces-builder:make-validator-tags {execution:
> make_validator_tags_tomahawk}]
> [INFO] [myfaces-builder:make-converter-tags {execution:
> make_validator_tags_tomahawk}]
> [INFO] [myfaces-builder:make-config {execution: maketomahawktld}]
> [INFO] using base content file:
> C:\projects\tomahawk\core\src\main\conf\META-INF\tomahawk-base.tld
> [INFO] [myfaces-builder:make-config {execution: maketomahawktaglib}]
> [INFO] using base content file:
> C:\projects\tomahawk\core\src\main\conf\META-INF\facelets-taglib-base.xml
> [INFO] [dependency:unpack {execution: unpack-shared-impl-sources}]
> [INFO] Configured Artifact:
> org.apache.myfaces.shared:myfaces-shared-tomahawk:sources:?:jar
> [INFO] Unpacking C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\shared\myfaces-shared-tomahawk\2.0.9\myfaces-shared-tomahawk-2.0.9-sources.jarto
>  C:\projects\tomahawk\core\target\shared_sources
> with Includes null and excludes:META-INF/*.*
> [INFO] [build-helper:add-source {execution: add-source}]
> [INFO] Source directory: C:\projects\tomahawk\core\target\shared_sources
> added.
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 645 source files to
> C:\projects\tomahawk\core\target\classes
> [INFO] [dependency:unpack {execution: unpack-shared-tomahawk}]
> [INFO] Configured Artifact:
> org.apache.myfaces.shared:myfaces-shared-tomahawk:?:jar
> [INFO] Unpacking C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\shared\myfaces-shared-tomahawk\2.0.9\myfaces-shared-tomahawk-2.0.9.jarto
>  C:\projects\tomahawk\core\target\classes
> with Includes null and excludes:META-INF/*.*
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] Compiling 88 source files to
> C:\projects\tomahawk\core\target\test-classes
> [INFO] [surefire:test]
> [INFO] Surefire report directory:
> C:\projects\tomahawk\core\target\surefire-reports
>
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.myfaces.test.MyFacesTagLibTestCase
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.968 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectManyMenuTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.047 sec
> Running org.apache.myfaces.custom.fileupload.HtmlFileUploadRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.062 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlSecretRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.component.html.ext.HtmlOutputLabelTest
> 06.05.2009 10:21:45 org.apache.myfaces.renderkit.html.HtmlLabelRenderer
> encodeBegin
> WARNUNG: Attribute 'for' of label component with id TestComponent is not
> defined
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.157 sec
> Running org.apache.myfaces.component.html.ext.HtmlGraphicImageTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> 06.05.2009 10:21:45
> org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlImageRendererBase
> encodeEnd
> WARNUNG: ALT attribute is missing for : TestComponent
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
> Running org.apache.myfaces.custom.tree2.HtmlTreeRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found,
> using default value true
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.ALLOW_JAVASCRIPT'
> found, using default value true
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default
> value true
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID'
> found, using default value true
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS'
> found, using default value true
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getLongInitParameter
> INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD'
> found, using default value 2
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT'
> found, using default value false
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found,
> using default value false
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS'
> found, using default value
> org.apache.myfaces.renderkit.html.util.DefaultAddResource
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH'
> found, using default value /faces/myFacesExtensionResource
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
> 06.05.2009 10:21:46 org.apache.myfaces.shared_impl.config.MyfacesConfig
> createAndInitializeMyFacesConfig
> INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.172 sec
> Running
> org.apache.myfaces.custom.tree.renderkit.html.HtmlTreeImageCommandLinkRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> No state saving method defined, assuming default server state saving
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.tree.renderkit.html.HtmlTreeRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> No state saving method defined, assuming default server state saving
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> No state saving method defined, assuming default server state saving
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
> Running org.apache.myfaces.component.html.ext.HtmlPanelGridTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.selectOneRow.SelectOneRowRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.dateformat.TestSimpleDateFormatter
> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.828 sec
> Running org.apache.myfaces.custom.date.UserDataTest
> Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectOneListboxTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.093 sec
> Running org.apache.myfaces.component.html.ext.HtmlOutputTextTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.custom.htmltag.HtmlTagRendererTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.renderkit.html.util.ReducedHTMLParserTest
> 06.05.2009 10:21:47
> org.apache.myfaces.renderkit.html.util.ReducedHTMLParser parse
> WARNUNG: Invalid HTML; bare lessthan sign found at line 3. Surroundings: '#
>
> '.
> 06.05.2009 10:21:47
> org.apache.myfaces.renderkit.html.util.ReducedHTMLParser parse
> WARNUNG: Invalid HTML; bare lessthan sign found at line 3. Surroundings: '#
>
>  hi there'.
> 06.05.2009 10:21:47
> org.apache.myfaces.renderkit.html.util.ReducedHTMLParser parse
> WARNUNG: Invalid tag found: unexpected input while looking for attr name or
> '/>' at line 1. Surroundings: ')/>'.
> Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.selectitems.UISelectItemsTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectOneRadioTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlImageRendererTest
> 06.05.2009 10:21:47
> org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlImageRendererBase
> encodeEnd
> WARNUNG: ALT attribute is missing for : img1
> 06.05.2009 10:21:47
> org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlImageRendererBase
> encodeEnd
> WARNUNG: ALT attribute is missing for : img1
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.renderkit.html.util.AddResourceTest
> <html><head></head><body></body></html>
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.422 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlGroupRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.component.html.ext.HtmlInputSecretTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.validators.RegExprValidatorTestCase
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.609 sec
> Running org.apache.myfaces.custom.tabbedpane.HtmlTabbedPaneRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.063 sec
> Running org.apache.myfaces.custom.date.TestBean
> Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.component.html.ext.HtmlMessageTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
> Running org.apache.myfaces.custom.stylesheet.StylesheetRendererTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlMessageRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectBooleanCheckboxTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlRadioRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlLinkRendererTest
> WARNING: Component _id1 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id1:_id0 just got an automatic id, because there was no
> id assigned yet. If this component was created dynamically (i.e. not by a
> JSP tag) you should assign it an explicit static id or assign it the id you
> get from the createUniqueId from the current UIViewRoot component right
> after creation!
> No state saving method defined, assuming default server state saving
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found,
> using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default
> value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID'
> found, using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS'
> found, using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getLongInitParameter
> INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD'
> found, using default value 2
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT'
> found, using default value false
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found,
> using default value false
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS'
> found, using default value
> org.apache.myfaces.renderkit.html.util.DefaultAddResource
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH'
> found, using default value /faces/myFacesExtensionResource
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_impl.config.MyfacesConfig
> createAndInitializeMyFacesConfig
> INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
> WARNING: Component _id1 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id1:_id0 just got an automatic id, because there was no
> id assigned yet. If this component was created dynamically (i.e. not by a
> JSP tag) you should assign it an explicit static id or assign it the id you
> get from the createUniqueId from the current UIViewRoot component right
> after creation!
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found,
> using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default
> value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID'
> found, using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS'
> found, using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getLongInitParameter
> INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD'
> found, using default value 2
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT'
> found, using default value false
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found,
> using default value false
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS'
> found, using default value
> org.apache.myfaces.renderkit.html.util.DefaultAddResource
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH'
> found, using default value /faces/myFacesExtensionResource
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
> 06.05.2009 10:21:48 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> createAndInitializeMyFacesConfig
> INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
> No state saving method defined, assuming default server state saving
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
> Running org.apache.myfaces.component.html.ext.HtmlInputTextTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.custom.savestate.UISaveStateTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.layout.HtmlLayoutRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.component.html.ext.HtmlMessagesTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlTextRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.custom.validators.EqualValidatorTestCase
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlGridRendererTest
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.validators.EmailValidatorTestCase
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.079 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlMessagesRendererTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.custom.calendar.HtmlCalendarRendererTest
> Testing rendered attributes
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> ---------------------------------------
> <input id="_id0" name="_id0" type="text" onmouseover="onMouseOverTest()"
> onfocus="onfocusTest()"/><span id="_id0Span"/><script
> type="text/javascript">_5Fid0CalendarVar=new
> org_apache_myfaces_PopupCalendar();
> _5Fid0CalendarVar.initData.themePrefix = &quot;jscalendar-DB&quot;;
> _5Fid0CalendarVar.initData.imgDir =
> &quot;nullnull\/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader\/12415981\/calendar.HtmlCalendarRenderer\/DB\/&quot;;
> _5Fid0CalendarVar.initData.monthName = new
> Array(&quot;Januar&quot;,&quot;Februar&quot;,&quot;M\u00E4rz&quot;,&quot;April&quot;,&quot;Mai&quot;,&quot;Juni&quot;,&quot;Juli&quot;,&quot;August&quot;,&quot;September&quot;,&quot;Oktober&quot;,&quot;November&quot;,&quot;Dezember&quot;);
> _5Fid0CalendarVar.initData.dayName = new
> Array(&quot;Mo&quot;,&quot;Di&quot;,&quot;Mi&quot;,&quot;Do&quot;,&quot;Fr&quot;,&quot;Sa&quot;,&quot;So&quot;);
> _5Fid0CalendarVar.initData.startAt = 1;
> _5Fid0CalendarVar.dateFormatSymbols.weekdays = new
> Array(&quot;Sonntag&quot;,&quot;Montag&quot;,&quot;Dienstag&quot;,&quot;Mittwoch&quot;,&quot;Donnerstag&quot;,&quot;Freitag&quot;,&quot;Samstag&quot;);
> _5Fid0CalendarVar.dateFormatSymbols.shortWeekdays = new
> Array(&quot;So&quot;,&quot;Mo&quot;,&quot;Di&quot;,&quot;Mi&quot;,&quot;Do&quot;,&quot;Fr&quot;,&quot;Sa&quot;);
> _5Fid0CalendarVar.dateFormatSymbols.shortMonths = new
> Array(&quot;Jan&quot;,&quot;Feb&quot;,&quot;Mrz&quot;,&quot;Apr&quot;,&quot;Mai&quot;,&quot;Jun&quot;,&quot;Jul&quot;,&quot;Aug&quot;,&quot;Sep&quot;,&quot;Okt&quot;,&quot;Nov&quot;,&quot;Dez&quot;);
> _5Fid0CalendarVar.dateFormatSymbols.months = new
> Array(&quot;Januar&quot;,&quot;Februar&quot;,&quot;M\u00E4rz&quot;,&quot;April&quot;,&quot;Mai&quot;,&quot;Juni&quot;,&quot;Juli&quot;,&quot;August&quot;,&quot;September&quot;,&quot;Oktober&quot;,&quot;November&quot;,&quot;Dezember&quot;);
> _5Fid0CalendarVar.dateFormatSymbols.eras = new Array(&quot;v.
> Chr.&quot;,&quot;n. Chr.&quot;);
> _5Fid0CalendarVar.dateFormatSymbols.ampms = new
> Array(&quot;AM&quot;,&quot;PM&quot;);
> _5Fid0CalendarVar.initData.popupLeft = false;
>
> _5Fid0CalendarVar.initData.selectMode = &quot;day&quot;;
> _5Fid0CalendarVar.init(document.getElementById(&apos;_id0Span&apos;));
> </script><input type="button"
> onclick="_5Fid0CalendarVar._popUpCalendar(this,document.getElementById(&apos;_id0&apos;),&apos;dd.MM.yy&apos;)"
> value="..."/>
>
> ---------------------------------------
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.375 sec
> Running org.apache.myfaces.custom.inputTextHelp.HtmlTextHelpRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.div.DivRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectOneMenuTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectManyCheckboxTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.custom.picklist.HtmlPicklistRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.11 sec
> Running org.apache.myfaces.custom.tree2.HtmlTreeTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.component.html.ext.HtmlDataTableTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.172 sec
> Running org.apache.myfaces.custom.newspaper.HtmlNewspaperTableRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.component.html.ext.HtmlCommandButtonTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlMenuRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlTableRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.test.TomahawkClassElementTestCase
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.704 sec
> Running org.apache.myfaces.component.html.ext.HtmlInputTextareaTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.component.html.ext.HtmlPanelGroupTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlListboxRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
> Running
> org.apache.myfaces.custom.selectOneCountry.SelectOneCountryRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.219 sec
> Running org.apache.myfaces.custom.swapimage.HtmlSwapImageRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.tree2.UITreeDataTest
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> 06.05.2009 10:21:52 org.apache.myfaces.custom.tree2.UITreeData processNodes
> WARNUNG: Unable to locate facet with the name: default
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
> Running org.apache.myfaces.custom.tree2.TreeWalkerBaseTest
> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlTextareaRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.custom.transform.XmlTransformTest
> Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.079 sec
> Running org.apache.myfaces.custom.navigation.HtmlNavigationRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.component.html.ext.HtmlSelectManyListboxTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running
> org.apache.myfaces.custom.tree.renderkit.html.HtmlTreeCheckboxRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running org.apache.myfaces.custom.datalist.HtmlListRendererTest
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.renderkit.html.ext.HtmlButtonRendererTest
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found,
> using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default
> value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID'
> found, using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS'
> found, using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getLongInitParameter
> INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD'
> found, using default value 2
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT'
> found, using default value false
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found,
> using default value false
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS'
> found, using default value
> org.apache.myfaces.renderkit.html.util.DefaultAddResource
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH'
> found, using default value /faces/myFacesExtensionResource
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_impl.config.MyfacesConfig
> createAndInitializeMyFacesConfig
> INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
> WARNING: Component _id1 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id1:_id0 just got an automatic id, because there was no
> id assigned yet. If this component was created dynamically (i.e. not by a
> JSP tag) you should assign it an explicit static id or assign it the id you
> get from the createUniqueId from the current UIViewRoot component right
> after creation!
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.PRETTY_HTML' found,
> using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS' found, using default
> value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RENDER_VIEWSTATE_ID'
> found, using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.STRICT_XHTML_LINKS'
> found, using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getLongInitParameter
> INFO: No context init parameter 'org.apache.myfaces.CONFIG_REFRESH_PERIOD'
> found, using default value 2
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT'
> found, using default value false
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found,
> using default value false
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS'
> found, using default value
> org.apache.myfaces.renderkit.html.util.DefaultAddResource
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getStringInitParameter
> INFO: No context init parameter 'org.apache.myfaces.RESOURCE_VIRTUAL_PATH'
> found, using default value /faces/myFacesExtensionResource
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> getBooleanInitParameter
> INFO: No context init parameter
> 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
> 06.05.2009 10:21:54 org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
> createAndInitializeMyFacesConfig
> INFO: Starting up Tomahawk on the MyFaces-JSF-Implementation
> WARNING: Component _id1 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> WARNING: Component _id1:_id0 just got an automatic id, because there was no
> id assigned yet. If this component was created dynamically (i.e. not by a
> JSP tag) you should assign it an explicit static id or assign it the id you
> get from the createUniqueId from the current UIViewRoot component right
> after creation!
> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec
> Running org.apache.myfaces.component.html.ext.HtmlInputHiddenTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
> Running
> org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageRendererTest
> WARNING: Component _id0 just got an automatic id, because there was no id
> assigned yet. If this component was created dynamically (i.e. not by a JSP
> tag) you should assign it an explicit static id or assign it the id you get
> from the createUniqueId from the current UIViewRoot component right after
> creation!
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
>
> Results :
>
> Tests run: 178, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] Building jar:
> C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT.jar
> [INFO] Preparing source:jar
> [WARNING] Removing: jar from forked lifecycle, to prevent recursive
> invocation.
> [INFO] [buildnumber:create {execution: default}]
> [INFO] Storing buildNumber: 2009-05-06 10:22:07 +0200 at timestamp:
> 1241598127328
> [INFO] [myfaces-builder:build-metadata {execution: default}]
> Artifact: myfaces-api-1.1.6.jar have META-INF/myfaces-metadata.xml
> [INFO] [myfaces-builder:make-config {execution: makefacesconfig}]
> [INFO] using base content file:
> C:\projects\tomahawk\core\src\main\conf\META-INF\faces-config-base.xml
> [INFO] [myfaces-builder:make-components {execution: makecomp}]
> [INFO] [myfaces-builder:make-validators {execution: makeval}]
> [INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
> [INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
> [INFO] [myfaces-builder:make-validator-tags {execution:
> make_validator_tags_tomahawk}]
> [INFO] [myfaces-builder:make-converter-tags {execution:
> make_validator_tags_tomahawk}]
> [INFO] [myfaces-builder:make-config {execution: maketomahawktld}]
> [INFO] using base content file:
> C:\projects\tomahawk\core\src\main\conf\META-INF\tomahawk-base.tld
> [INFO] [myfaces-builder:make-config {execution: maketomahawktaglib}]
> [INFO] using base content file:
> C:\projects\tomahawk\core\src\main\conf\META-INF\facelets-taglib-base.xml
> [INFO] [source:jar {execution: attach-source}]
> [INFO] Building jar:
> C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT-sources.jar
> [INFO] Preparing checkstyle:check
> [INFO] [checkstyle:checkstyle]
> [WARNING] File encoding has not been set, using platform encoding Cp1252,
> i.e. build is platform dependent!
> [INFO] [checkstyle:check {execution: verify-style}]
> [INFO] [install:install]
> [INFO] Installing
> C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT.jar to C:\Dokumente
> und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jar
> [INFO] Installing
> C:\projects\tomahawk\core\target\tomahawk-1.1.9-SNAPSHOT-sources.jar to
> C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT-sources.jar
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Tomahawk 1.2 Core
> [INFO]    task-segment: [install]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [myfaces-builder:unpack {execution: unpack-tomahawk}]
> [INFO] Adding:
> org/apache/myfaces/component/MethodBindingToMethodExpression.java
> [INFO] Adding:
> org/apache/myfaces/component/MethodExpressionToMethodBinding.java
> [INFO] Adding: org/apache/myfaces/converter/ConverterTag.java
> [INFO] Adding: org/apache/myfaces/custom/aliasbean/Alias.java
> [INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBean.java
> [INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBeansScope.java
> [INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBeansScopeTag.java
> [INFO] Adding: org/apache/myfaces/custom/aliasbean/AliasBeanTag.java
> [INFO] Adding: org/apache/myfaces/custom/buffer/AbstractBuffer.java
> [INFO] Adding: org/apache/myfaces/custom/htmlTag/AbstractHtmlTag.java
> [INFO] Adding: org/apache/myfaces/custom/htmlTag/HtmlTagRenderer.java
> [INFO] Adding:
> org/apache/myfaces/custom/navigation/AbstractHtmlPanelNavigation.java
> [INFO] Adding:
> org/apache/myfaces/custom/navmenu/AbstractUINavigationMenuItem.java
> [INFO] Adding: org/apache/myfaces/custom/savestate/UISaveState.java
> [INFO] Adding: org/apache/myfaces/custom/schedule/UISchedule.java
> [INFO] Adding:
> org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java
> [INFO] Adding: org/apache/myfaces/custom/tree/taglib/AbstractTreeTag.java
> [INFO] Adding:
> org/apache/myfaces/custom/updateactionlistener/UpdateActionListenerTag.java
> [INFO] Adding:
> org/apache/myfaces/renderkit/html/ext/HtmlCheckboxRenderer.java
> [INFO] Adding:
> org/apache/myfaces/renderkit/html/ext/HtmlMessageRenderer.java
> [INFO] Adding: org/apache/myfaces/renderkit/html/ext/HtmlRadioRenderer.java
> [INFO] Adding: org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java
> [INFO] Adding:
> org/apache/myfaces/tomahawk/application/jsp/JspTilesTwoViewHandlerImpl.java
> [INFO] Adding:
> org/apache/myfaces/tomahawk/application/jsp/ViewResponseWrapper.java
> [INFO] Adding: org/apache/myfaces/validator/ValidatorBase.java
> [INFO] Adding: org/apache/myfaces/validator/ValidatorBaseTag.java
> [INFO] Configured Artifact:
> org.apache.myfaces.tomahawk:tomahawk:sources:1.1.9-SNAPSHOT:jar
> Artifact: tomahawk-1.1.9-SNAPSHOT-sources.jar have
> META-INF/myfaces-metadata.xml
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlCommandButton
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlCommandButtonTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlCommandLink
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlCommandLinkTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlDataTable
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlDataTableTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlGraphicImage
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlGraphicImageTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlInputHidden
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlInputHiddenTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlInputSecret
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlInputSecretTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlInputText
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlInputTextarea
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlInputTextareaTag
> [INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlMessage
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlMessageTag
> [INFO] Adding Generated: org.apache.myfaces.component.html.ext.HtmlMessages
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlMessagesTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlOutputLabel
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlOutputLabelTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlOutputText
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlOutputTextTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlPanelGrid
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGridTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlPanelGroup
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlPanelGroupTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectBooleanCheckbox
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectBooleanCheckboxTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectManyCheckbox
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyCheckboxTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectManyListbox
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyListboxTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectManyMenu
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectManyMenuTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectOneListbox
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneListboxTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectOneMenu
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneMenuTag
> [INFO] Adding Generated:
> org.apache.myfaces.component.html.ext.HtmlSelectOneRadio
> [INFO] Adding Generated:
> org.apache.myfaces.generated.taglib.html.ext.HtmlSelectOneRadioTag
> [INFO] Adding Generated: org.apache.myfaces.custom.buffer.Buffer
> [INFO] Adding Generated: org.apache.myfaces.custom.buffer.BufferTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.calendar.HtmlInputCalendar
> [INFO] Adding Generated:
> org.apache.myfaces.custom.calendar.HtmlInputCalendarTag
> [INFO] Adding Generated: org.apache.myfaces.custom.captcha.CAPTCHAComponent
> [INFO] Adding Generated: org.apache.myfaces.custom.captcha.CAPTCHATag
> [INFO] Adding Generated: org.apache.myfaces.custom.checkbox.HtmlCheckbox
> [INFO] Adding Generated: org.apache.myfaces.custom.checkbox.HtmlCheckboxTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanel
> [INFO] Adding Generated:
> org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanelTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLink
> [INFO] Adding Generated:
> org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLinkTag
> [INFO] Adding Generated: org.apache.myfaces.custom.column.HtmlSimpleColumn
> [INFO] Adding Generated: org.apache.myfaces.custom.column.HtmlColumnTag
> [INFO] Adding Generated: org.apache.myfaces.custom.crosstable.HtmlColumns
> [INFO] Adding Generated:
> org.apache.myfaces.custom.crosstable.HtmlColumnsTag
> [INFO] Adding Generated: org.apache.myfaces.custom.datalist.HtmlDataList
> [INFO] Adding Generated: org.apache.myfaces.custom.datalist.HtmlDataListTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.datascroller.HtmlDataScroller
> [INFO] Adding Generated:
> org.apache.myfaces.custom.datascroller.HtmlDataScrollerTag
> [INFO] Adding Generated: org.apache.myfaces.custom.date.HtmlInputDate
> [INFO] Adding Generated: org.apache.myfaces.custom.date.HtmlInputDateTag
> [INFO] Adding Generated: org.apache.myfaces.custom.htmlTag.HtmlTag
> [INFO] Adding Generated: org.apache.myfaces.custom.htmlTag.HtmlTagTag
> [INFO] Adding Generated: org.apache.myfaces.custom.div.Div
> [INFO] Adding Generated: org.apache.myfaces.custom.div.DivTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.document.AbstractDocumentTag
> [INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentBody
> [INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentBodyTag
> [INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentTag
> [INFO] Adding Generated: org.apache.myfaces.custom.document.DocumentHeadTag
> [INFO] Adding Generated: org.apache.myfaces.custom.dojo.DojoInitializerTag
> [INFO] Adding Generated: org.apache.myfaces.custom.fieldset.Fieldset
> [INFO] Adding Generated: org.apache.myfaces.custom.fieldset.FieldsetTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.fileupload.HtmlInputFileUpload
> [INFO] Adding Generated:
> org.apache.myfaces.custom.fileupload.HtmlInputFileUploadTag
> [INFO] Adding Generated: org.apache.myfaces.custom.inputHtml.InputHtmlTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelp
> [INFO] Adding Generated:
> org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelpTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.jslistener.JsValueChangeListener
> [INFO] Adding Generated:
> org.apache.myfaces.custom.jslistener.JsValueChangeListenerTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.jsvalueset.HtmlJsValueSet
> [INFO] Adding Generated:
> org.apache.myfaces.custom.jsvalueset.HtmlJsValueSetTag
> [INFO] Adding Generated: org.apache.myfaces.custom.layout.HtmlPanelLayout
> [INFO] Adding Generated:
> org.apache.myfaces.custom.layout.HtmlPanelLayoutTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navigation.HtmlCommandNavigation
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navigation.HtmlCommandNavigationTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navigation.HtmlPanelNavigation
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navigation.HtmlPanelNavigationTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItems
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemsTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.UINavigationMenuItem
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItem
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItemTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenu
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenuTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.jscookmenu.HtmlCommandJSCookMenu
> [INFO] Adding Generated:
> org.apache.myfaces.custom.navmenu.jscookmenu.HtmlJSCookMenuTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.newspaper.HtmlNewspaperTable
> [INFO] Adding Generated:
> org.apache.myfaces.custom.newspaper.HtmlNewspaperTableTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.panelstack.HtmlPanelStack
> [INFO] Adding Generated: org.apache.myfaces.custom.panelstack.PanelStackTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.picklist.HtmlSelectManyPicklist
> [INFO] Adding Generated:
> org.apache.myfaces.custom.picklist.HtmlSelectManyPicklistTag
> [INFO] Adding Generated: org.apache.myfaces.custom.popup.HtmlPopup
> [INFO] Adding Generated: org.apache.myfaces.custom.popup.HtmlPopupTag
> [INFO] Adding Generated: org.apache.myfaces.custom.radio.HtmlRadio
> [INFO] Adding Generated: org.apache.myfaces.custom.radio.HtmlRadioTag
> [INFO] Adding Generated: org.apache.myfaces.custom.savestate.SaveStateTag
> [INFO] Adding Generated: org.apache.myfaces.custom.schedule.UIScheduleBase
> [INFO] Adding Generated: org.apache.myfaces.custom.schedule.HtmlSchedule
> [INFO] Adding Generated: org.apache.myfaces.custom.schedule.ScheduleTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectOneCountry.SelectOneCountry
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectOneCountry.SelectOneCountryTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguage
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectOneRow.SelectOneRow
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectOneRow.SelectOneRowTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectitems.UISelectItems
> [INFO] Adding Generated:
> org.apache.myfaces.custom.selectitems.SelectItemsTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.sortheader.HtmlCommandSortHeader
> [INFO] Adding Generated:
> org.apache.myfaces.custom.sortheader.HtmlCommandSortHeaderTag
> [INFO] Adding Generated: org.apache.myfaces.custom.stylesheet.Stylesheet
> [INFO] Adding Generated: org.apache.myfaces.custom.stylesheet.StylesheetTag
> [INFO] Adding Generated: org.apache.myfaces.custom.subform.SubForm
> [INFO] Adding Generated: org.apache.myfaces.custom.subform.SubFormTag
> [INFO] Adding Generated: org.apache.myfaces.custom.swapimage.HtmlSwapImage
> [INFO] Adding Generated:
> org.apache.myfaces.custom.swapimage.HtmlSwapImageTag
> [INFO] Adding Generated: org.apache.myfaces.custom.tabbedpane.HtmlPanelTab
> [INFO] Adding Generated:
> org.apache.myfaces.custom.tabbedpane.HtmlPanelTabTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPane
> [INFO] Adding Generated:
> org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPaneTag
> [INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleGroup
> [INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleGroupTag
> [INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleLink
> [INFO] Adding Generated: org.apache.myfaces.custom.toggle.ToggleLinkTag
> [INFO] Adding Generated: org.apache.myfaces.custom.toggle.TogglePanel
> [INFO] Adding Generated: org.apache.myfaces.custom.toggle.TogglePanelTag
> [INFO] Adding Generated: org.apache.myfaces.custom.transform.XmlTransform
> [INFO] Adding Generated:
> org.apache.myfaces.custom.transform.XmlTransformTag
> [INFO] Adding Generated: org.apache.myfaces.custom.tree.HtmlTreeCheckbox
> [INFO] Adding Generated:
> org.apache.myfaces.custom.tree.taglib.TreeCheckboxTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.tree.HtmlTreeImageCommandLink
> [INFO] Adding Generated: org.apache.myfaces.custom.tree.taglib.TreeTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.tree.taglib.TreeColumnTag
> [INFO] Adding Generated: org.apache.myfaces.custom.tree2.HtmlTree
> [INFO] Adding Generated: org.apache.myfaces.custom.tree2.TreeTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.creditcardvalidator.CreditCardValidator
> [INFO] Adding Generated:
> org.apache.myfaces.custom.creditcardvalidator.ValidateCreditCardTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.emailvalidator.ValidateEmailTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.equalvalidator.EqualValidator
> [INFO] Adding Generated:
> org.apache.myfaces.custom.equalvalidator.ValidateEqualTag
> [INFO] Adding Generated:
> org.apache.myfaces.custom.regexprvalidator.RegExprValidator
> [INFO] Adding Generated:
> org.apache.myfaces.custom.regexprvalidator.ValidateRegExprTag
> [INFO] Unpacking C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT-sources.jarto
>  C:\projects\tomahawk\core12\target\tomahawk11_sources
> with Includes **/*.java and
> excludes:**/*.class,**/META-INF/**,org/apache/myfaces/shared_tomahawk/**/*.java,org/apache/myfaces/component/MethodBindingToMethodExpression.java,org/apache/myfaces/component/MethodExpressionToMethodBinding.java,org/apache/myfaces/converter/ConverterTag.java,org/apache/myfaces/custom/aliasbean/Alias.java,org/apache/myfaces/custom/aliasbean/AliasBean.java,org/apache/myfaces/custom/aliasbean/AliasBeansScope.java,org/apache/myfaces/custom/aliasbean/AliasBeansScopeTag.java,org/apache/myfaces/custom/aliasbean/AliasBeanTag.java,org/apache/myfaces/custom/buffer/AbstractBuffer.java,org/apache/myfaces/custom/htmlTag/AbstractHtmlTag.java,org/apache/myfaces/custom/htmlTag/HtmlTagRenderer.java,org/apache/myfaces/custom/navigation/AbstractHtmlPanelNavigation.java,org/apache/myfaces/custom/navmenu/AbstractUINavigationMenuItem.java,org/apache/myfaces/custom/savestate/UISaveState.java,org/apache/myfaces/custom/schedule/UISchedule.java,org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java,org/apache/myfaces/custom/tree/taglib/AbstractTreeTag.java,org/apache/myfaces/custom/updateactionlistener/UpdateActionListenerTag.java,org/apache/myfaces/renderkit/html/ext/HtmlCheckboxRenderer.java,org/apache/myfaces/renderkit/html/ext/HtmlMessageRenderer.java,org/apache/myfaces/renderkit/html/ext/HtmlRadioRenderer.java,org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java,org/apache/myfaces/tomahawk/application/jsp/JspTilesTwoViewHandlerImpl.java,org/apache/myfaces/tomahawk/application/jsp/ViewResponseWrapper.java,org/apache/myfaces/validator/ValidatorBase.java,org/apache/myfaces/validator/ValidatorBaseTag.java,org/apache/myfaces/component/html/ext/HtmlCommandButton.java,org/apache/myfaces/generated/taglib/html/ext/HtmlCommandButtonTag.java,org/apache/myfaces/component/html/ext/HtmlCommandLink.java,org/apache/myfaces/generated/taglib/html/ext/HtmlCommandLinkTag.java,org/apache/myfaces/component/html/ext/HtmlDataTable.java,org/apache/myfaces/generated/taglib/html/ext/HtmlDataTableTag.java,org/apache/myfaces/component/html/ext/HtmlGraphicImage.java,org/apache/myfaces/generated/taglib/html/ext/HtmlGraphicImageTag.java,org/apache/myfaces/component/html/ext/HtmlInputHidden.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputHiddenTag.java,org/apache/myfaces/component/html/ext/HtmlInputSecret.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputSecretTag.java,org/apache/myfaces/component/html/ext/HtmlInputText.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputTextTag.java,org/apache/myfaces/component/html/ext/HtmlInputTextarea.java,org/apache/myfaces/generated/taglib/html/ext/HtmlInputTextareaTag.java,org/apache/myfaces/component/html/ext/HtmlMessage.java,org/apache/myfaces/generated/taglib/html/ext/HtmlMessageTag.java,org/apache/myfaces/component/html/ext/HtmlMessages.java,org/apache/myfaces/generated/taglib/html/ext/HtmlMessagesTag.java,org/apache/myfaces/component/html/ext/HtmlOutputLabel.java,org/apache/myfaces/generated/taglib/html/ext/HtmlOutputLabelTag.java,org/apache/myfaces/component/html/ext/HtmlOutputText.java,org/apache/myfaces/generated/taglib/html/ext/HtmlOutputTextTag.java,org/apache/myfaces/component/html/ext/HtmlPanelGrid.java,org/apache/myfaces/generated/taglib/html/ext/HtmlPanelGridTag.java,org/apache/myfaces/component/html/ext/HtmlPanelGroup.java,org/apache/myfaces/generated/taglib/html/ext/HtmlPanelGroupTag.java,org/apache/myfaces/component/html/ext/HtmlSelectBooleanCheckbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectBooleanCheckboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectManyCheckbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectManyCheckboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectManyListbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectManyListboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectManyMenu.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectManyMenuTag.java,org/apache/myfaces/component/html/ext/HtmlSelectOneListbox.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectOneListboxTag.java,org/apache/myfaces/component/html/ext/HtmlSelectOneMenu.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectOneMenuTag.java,org/apache/myfaces/component/html/ext/HtmlSelectOneRadio.java,org/apache/myfaces/generated/taglib/html/ext/HtmlSelectOneRadioTag.java,org/apache/myfaces/custom/buffer/Buffer.java,org/apache/myfaces/custom/buffer/BufferTag.java,org/apache/myfaces/custom/calendar/HtmlInputCalendar.java,org/apache/myfaces/custom/calendar/HtmlInputCalendarTag.java,org/apache/myfaces/custom/captcha/CAPTCHAComponent.java,org/apache/myfaces/custom/captcha/CAPTCHATag.java,org/apache/myfaces/custom/checkbox/HtmlCheckbox.java,org/apache/myfaces/custom/checkbox/HtmlCheckboxTag.java,org/apache/myfaces/custom/collapsiblepanel/HtmlCollapsiblePanel.java,org/apache/myfaces/custom/collapsiblepanel/HtmlCollapsiblePanelTag.java,org/apache/myfaces/custom/collapsiblepanel/HtmlHeaderLink.java,org/apache/myfaces/custom/collapsiblepanel/HtmlHeaderLinkTag.java,org/apache/myfaces/custom/column/HtmlSimpleColumn.java,org/apache/myfaces/custom/column/HtmlColumnTag.java,org/apache/myfaces/custom/crosstable/HtmlColumns.java,org/apache/myfaces/custom/crosstable/HtmlColumnsTag.java,org/apache/myfaces/custom/datalist/HtmlDataList.java,org/apache/myfaces/custom/datalist/HtmlDataListTag.java,org/apache/myfaces/custom/datascroller/HtmlDataScroller.java,org/apache/myfaces/custom/datascroller/HtmlDataScrollerTag.java,org/apache/myfaces/custom/date/HtmlInputDate.java,org/apache/myfaces/custom/date/HtmlInputDateTag.java,org/apache/myfaces/custom/htmlTag/HtmlTag.java,org/apache/myfaces/custom/htmlTag/HtmlTagTag.java,org/apache/myfaces/custom/div/Div.java,org/apache/myfaces/custom/div/DivTag.java,org/apache/myfaces/custom/document/AbstractDocumentTag.java,org/apache/myfaces/custom/document/DocumentBody.java,org/apache/myfaces/custom/document/DocumentBodyTag.java,org/apache/myfaces/custom/document/DocumentTag.java,org/apache/myfaces/custom/document/DocumentHeadTag.java,org/apache/myfaces/custom/dojo/DojoInitializerTag.java,org/apache/myfaces/custom/fieldset/Fieldset.java,org/apache/myfaces/custom/fieldset/FieldsetTag.java,org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java,org/apache/myfaces/custom/fileupload/HtmlInputFileUploadTag.java,org/apache/myfaces/custom/inputHtml/InputHtmlTag.java,org/apache/myfaces/custom/inputTextHelp/HtmlInputTextHelp.java,org/apache/myfaces/custom/inputTextHelp/HtmlInputTextHelpTag.java,org/apache/myfaces/custom/jslistener/JsValueChangeListener.java,org/apache/myfaces/custom/jslistener/JsValueChangeListenerTag.java,org/apache/myfaces/custom/jsvalueset/HtmlJsValueSet.java,org/apache/myfaces/custom/jsvalueset/HtmlJsValueSetTag.java,org/apache/myfaces/custom/layout/HtmlPanelLayout.java,org/apache/myfaces/custom/layout/HtmlPanelLayoutTag.java,org/apache/myfaces/custom/navigation/HtmlCommandNavigation.java,org/apache/myfaces/custom/navigation/HtmlCommandNavigationTag.java,org/apache/myfaces/custom/navigation/HtmlPanelNavigation.java,org/apache/myfaces/custom/navigation/HtmlPanelNavigationTag.java,org/apache/myfaces/custom/navmenu/HtmlNavigationMenuItems.java,org/apache/myfaces/custom/navmenu/HtmlNavigationMenuItemsTag.java,org/apache/myfaces/custom/navmenu/UINavigationMenuItem.java,org/apache/myfaces/custom/navmenu/HtmlNavigationMenuItemTag.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlCommandNavigationItem.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlCommandNavigationItemTag.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlPanelNavigationMenu.java,org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlPanelNavigationMenuTag.java,org/apache/myfaces/custom/navmenu/jscookmenu/HtmlCommandJSCookMenu.java,org/apache/myfaces/custom/navmenu/jscookmenu/HtmlJSCookMenuTag.java,org/apache/myfaces/custom/newspaper/HtmlNewspaperTable.java,org/apache/myfaces/custom/newspaper/HtmlNewspaperTableTag.java,org/apache/myfaces/custom/panelstack/HtmlPanelStack.java,org/apache/myfaces/custom/panelstack/PanelStackTag.java,org/apache/myfaces/custom/picklist/HtmlSelectManyPicklist.java,org/apache/myfaces/custom/picklist/HtmlSelectManyPicklistTag.java,org/apache/myfaces/custom/popup/HtmlPopup.java,org/apache/myfaces/custom/popup/HtmlPopupTag.java,org/apache/myfaces/custom/radio/HtmlRadio.java,org/apache/myfaces/custom/radio/HtmlRadioTag.java,org/apache/myfaces/custom/savestate/SaveStateTag.java,org/apache/myfaces/custom/schedule/UIScheduleBase.java,org/apache/myfaces/custom/schedule/HtmlSchedule.java,org/apache/myfaces/custom/schedule/ScheduleTag.java,org/apache/myfaces/custom/selectOneCountry/SelectOneCountry.java,org/apache/myfaces/custom/selectOneCountry/SelectOneCountryTag.java,org/apache/myfaces/custom/selectOneLanguage/SelectOneLanguage.java,org/apache/myfaces/custom/selectOneLanguage/SelectOneLanguageTag.java,org/apache/myfaces/custom/selectOneRow/SelectOneRow.java,org/apache/myfaces/custom/selectOneRow/SelectOneRowTag.java,org/apache/myfaces/custom/selectitems/UISelectItems.java,org/apache/myfaces/custom/selectitems/SelectItemsTag.java,org/apache/myfaces/custom/sortheader/HtmlCommandSortHeader.java,org/apache/myfaces/custom/sortheader/HtmlCommandSortHeaderTag.java,org/apache/myfaces/custom/stylesheet/Stylesheet.java,org/apache/myfaces/custom/stylesheet/StylesheetTag.java,org/apache/myfaces/custom/subform/SubForm.java,org/apache/myfaces/custom/subform/SubFormTag.java,org/apache/myfaces/custom/swapimage/HtmlSwapImage.java,org/apache/myfaces/custom/swapimage/HtmlSwapImageTag.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTab.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTabTag.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTabbedPane.java,org/apache/myfaces/custom/tabbedpane/HtmlPanelTabbedPaneTag.java,org/apache/myfaces/custom/toggle/ToggleGroup.java,org/apache/myfaces/custom/toggle/ToggleGroupTag.java,org/apache/myfaces/custom/toggle/ToggleLink.java,org/apache/myfaces/custom/toggle/ToggleLinkTag.java,org/apache/myfaces/custom/toggle/TogglePanel.java,org/apache/myfaces/custom/toggle/TogglePanelTag.java,org/apache/myfaces/custom/transform/XmlTransform.java,org/apache/myfaces/custom/transform/XmlTransformTag.java,org/apache/myfaces/custom/tree/HtmlTreeCheckbox.java,org/apache/myfaces/custom/tree/taglib/TreeCheckboxTag.java,org/apache/myfaces/custom/tree/HtmlTreeImageCommandLink.java,org/apache/myfaces/custom/tree/taglib/TreeTag.java,org/apache/myfaces/custom/tree/taglib/TreeColumnTag.java,org/apache/myfaces/custom/tree2/HtmlTree.java,org/apache/myfaces/custom/tree2/TreeTag.java,org/apache/myfaces/custom/creditcardvalidator/CreditCardValidator.java,org/apache/myfaces/custom/creditcardvalidator/ValidateCreditCardTag.java,org/apache/myfaces/custom/emailvalidator/ValidateEmailTag.java,org/apache/myfaces/custom/equalvalidator/EqualValidator.java,org/apache/myfaces/custom/equalvalidator/ValidateEqualTag.java,org/apache/myfaces/custom/regexprvalidator/RegExprValidator.java,org/apache/myfaces/custom/regexprvalidator/ValidateRegExprTag.java
> [INFO] [myfaces-builder:build-metadata {execution: default}]
> Artifact: myfaces-api-1.2.6.jar have META-INF/myfaces-metadata.xml
> [INFO] [myfaces-builder:make-config {execution: makefacesconfig}]
> [INFO] using base content file:
> C:\projects\tomahawk\core12\src\main\conf\META-INF\faces-config-base.xml
> [INFO] [myfaces-builder:make-components {execution: makecomp}]
> [INFO] [myfaces-builder:make-validators {execution: makeval}]
> [INFO] [myfaces-builder:make-tags {execution: make_tags_myfaces_core}]
> [INFO] [myfaces-builder:make-tags {execution: make_tags_tomahawk}]
> [INFO] [myfaces-builder:make-validator-tags {execution:
> make_validator_tags_tomahawk}]
> [INFO] [myfaces-builder:make-converter-tags {execution:
> make_validator_tags_tomahawk}]
> [INFO] [myfaces-builder:make-config {execution: maketomahawktld}]
> [INFO] using base content file:
> C:\projects\tomahawk\core12\src\main\conf\META-INF\tomahawk-base.tld
> [INFO] [myfaces-builder:make-config {execution: maketomahawktaglib}]
> [INFO] using base content file:
> C:\projects\tomahawk\core12\src\main\conf\META-INF\facelets-taglib-base.xml
> [INFO] [build-helper:add-source {execution: add-source}]
> [INFO] Source directory: C:\projects\tomahawk\core12\target\shared_sources
> added.
> [INFO] [dependency:unpack {execution: unpack-shared-impl-sources}]
> [INFO] Configured Artifact:
> org.apache.myfaces.shared:myfaces-shared-tomahawk:sources:?:jar
> [INFO] Unpacking C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\shared\myfaces-shared-tomahawk\3.0.5\myfaces-shared-tomahawk-3.0.5-sources.jarto
>  C:\projects\tomahawk\core12\target\shared_sources
> with Includes null and excludes:META-INF/*.*
> [INFO] [myfaces-builder:unpack {execution: unpack-tomahawk-resources}]
> [INFO] Adding: META-INF/componentClass12.vm
> [INFO] Adding: META-INF/facelets-taglib.vm
> [INFO] Adding: META-INF/faces-config12.vm
> [INFO] Adding: META-INF/LICENSE.txt
> [INFO] Adding: META-INF/licenses/dojo-LICENSE.TXT
> [INFO] Adding: META-INF/licenses/i18n-LICENSE.txt
> [INFO] Adding: META-INF/licenses/jscookmenu-LICENSE.txt
> [INFO] Adding: META-INF/licenses/kupu-LICENSE.txt
> [INFO] Adding: META-INF/licenses/prototype-LICENSE.txt
> [INFO] Adding: META-INF/licenses/scriptaculous-LICENSE.txt
> [INFO] Adding: META-INF/NOTICE.txt
> [INFO] Adding: META-INF/tagClass12.vm
> [INFO] Adding: META-INF/tagConverterClass12.vm
> [INFO] Adding: META-INF/tagValidatorClass12.vm
> [INFO] Adding: META-INF/tomahawk12.vm
> [INFO] Adding: META-INF/validatorClass12.vm
> [INFO] Adding: META-INF/xdoc-component.vm
> [INFO] Adding: META-INF/xdoc-converter.vm
> [INFO] Adding: META-INF/xdoc-tag.vm
> [INFO] Adding: META-INF/xdoc-validator.vm
> [INFO] Configured Artifact:
> org.apache.myfaces.tomahawk:tomahawk:1.1.9-SNAPSHOT:jar
> [INFO] Unpacking C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jarto
>  C:\projects\tomahawk\core12\target\tomahawk11_resources
> with Includes null and
> excludes:**/*.class,**/META-INF/**,META-INF/componentClass12.vm,META-INF/facelets-taglib.vm,META-INF/faces-config12.vm,META-INF/LICENSE.txt,META-INF/licenses/dojo-LICENSE.TXT,META-INF/licenses/i18n-LICENSE.txt,META-INF/licenses/jscookmenu-LICENSE.txt,META-INF/licenses/kupu-LICENSE.txt,META-INF/licenses/prototype-LICENSE.txt,META-INF/licenses/scriptaculous-LICENSE.txt,META-INF/NOTICE.txt,META-INF/tagClass12.vm,META-INF/tagConverterClass12.vm,META-INF/tagValidatorClass12.vm,META-INF/tomahawk12.vm,META-INF/validatorClass12.vm,META-INF/xdoc-component.vm,META-INF/xdoc-converter.vm,META-INF/xdoc-tag.vm,META-INF/xdoc-validator.vm
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 191 source files to
> C:\projects\tomahawk\core12\target\classes
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Compilation failure
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[26,37]
> cannot find symbol
> symbol  : class HtmlTree
> location: package org.apache.myfaces.custom.tree
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[27,43]
> package org.apache.myfaces.custom.tree.model does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[28,43]
> package org.apache.myfaces.custom.tree.model does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[29,43]
> package org.apache.myfaces.custom.tree.model does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[35,35]
> cannot find symbol
> symbol  : class AlignProperty
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[36,35]
> cannot find symbol
> symbol  : class DataProperties
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[37,35]
> cannot find symbol
> symbol  : class EventAware
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[38,35]
> cannot find symbol
> symbol  : class PanelProperties
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[39,35]
> cannot find symbol
> symbol  : class UniversalProperties
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[59,42]
> cannot find symbol
> symbol: class AlignProperty
>        extends HtmlPanelGroup implements AlignProperty,
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,8]
> cannot find symbol
> symbol: class UniversalProperties
>        UniversalProperties, EventAware, DataProperties, PanelProperties
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,29]
> cannot find symbol
> symbol: class EventAware
>        UniversalProperties, EventAware, DataProperties, PanelProperties
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,41]
> cannot find symbol
> symbol: class DataProperties
>        UniversalProperties, EventAware, DataProperties, PanelProperties
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[60,57]
> cannot find symbol
> symbol: class PanelProperties
>        UniversalProperties, EventAware, DataProperties, PanelProperties
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[40,35]
> cannot find symbol
> symbol  : class UserRoleAware
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[41,35]
> cannot find symbol
> symbol  : class UserRoleUtils
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[42,52]
> package org.apache.myfaces.custom.navmenu.htmlnavmenu does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[43,52]
> package org.apache.myfaces.custom.navmenu.htmlnavmenu does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[60,4]
> cannot find symbol
> symbol: class UserRoleAware
>    UserRoleAware, ActionSource {
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[23,35]
> cannot find symbol
> symbol  : class UserRoleUtils
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[26,44]
> package org.apache.myfaces.component.html.ext does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[27,41]
> package org.apache.myfaces.custom.checkbox does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlCheckboxRenderer.java:[388,67]
> cannot find symbol
> symbol  : class HtmlCheckbox
> location: class org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[40,44]
> package org.apache.myfaces.component.html.ext does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlMessageRenderer.java:[41,44]
> package org.apache.myfaces.component.html.ext does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[24,35]
> cannot find symbol
> symbol  : class NewspaperTable
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[25,44]
> package org.apache.myfaces.component.html.ext does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[26,39]
> package org.apache.myfaces.custom.column does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[27,39]
> package org.apache.myfaces.custom.column does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[28,43]
> package org.apache.myfaces.custom.crosstable does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[29,45]
> package org.apache.myfaces.renderkit.html.util does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[30,45]
> package org.apache.myfaces.renderkit.html.util does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[31,45]
> package org.apache.myfaces.renderkit.html.util does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[312,35]
> cannot find symbol
> symbol  : class HtmlDataTable
> location: class org.apache.myfaces.renderkit.html.ext.HtmlTableRenderer
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlTableRenderer.java:[978,69]
> cannot find symbol
> symbol  : class HtmlDataTable
> location: class org.apache.myfaces.renderkit.html.ext.HtmlTableRenderer
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\HtmlTagRenderer.java:[30,45]
> package org.apache.myfaces.component.html.util does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[40,47]
> package org.apache.myfaces.custom.schedule.model does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[41,47]
> package org.apache.myfaces.custom.schedule.model does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[51,66]
> cannot find symbol
> symbol  : class UIScheduleBase
> location: package org.apache.myfaces.custom.schedule
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[77,12]
> cannot find symbol
> symbol  : class ScheduleEntry
> location: class org.apache.myfaces.custom.schedule.UISchedule
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[154,14]
> cannot find symbol
> symbol  : class ScheduleEntry
> location: class org.apache.myfaces.custom.schedule.UISchedule
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[365,11]
> cannot find symbol
> symbol  : class ScheduleEntry
> location: class org.apache.myfaces.custom.schedule.UISchedule
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\schedule\UISchedule.java:[458,37]
> cannot find symbol
> symbol  : class ScheduleEntry
> location: class org.apache.myfaces.custom.schedule.UISchedule
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[26,35]
> cannot find symbol
> symbol  : class ForceIdAware
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[27,35]
> cannot find symbol
> symbol  : class StyleAware
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[28,35]
> cannot find symbol
> symbol  : class UserRoleAware
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[29,35]
> cannot find symbol
> symbol  : class UserRoleUtils
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[30,45]
> package org.apache.myfaces.component.html.util does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[63,15]
> cannot find symbol
> symbol: class UserRoleAware
>    implements UserRoleAware, StyleAware, ForceIdAware
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[63,30]
> cannot find symbol
> symbol: class StyleAware
>    implements UserRoleAware, StyleAware, ForceIdAware
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\htmlTag\AbstractHtmlTag.java:[63,42]
> cannot find symbol
> symbol: class ForceIdAware
>    implements UserRoleAware, StyleAware, ForceIdAware
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlRadioRenderer.java:[33,35]
> cannot find symbol
> symbol  : class UserRoleUtils
> location: package org.apache.myfaces.component
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlRadioRenderer.java:[34,38]
> package org.apache.myfaces.custom.radio does not exist
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\renderkit\html\ext\HtmlRadioRenderer.java:[95,58]
> cannot find symbol
> symbol  : class HtmlRadio
> location: class org.apache.myfaces.renderkit.html.ext.HtmlRadioRenderer
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[77,12]
> cannot find symbol
> symbol  : class TreeModel
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[77,35]
> cannot find symbol
> symbol  : class TreeModel
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[81,32]
> cannot find symbol
> symbol  : class DefaultTreeModel
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[86,8]
> cannot find symbol
> symbol  : class HtmlTree
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[86,25]
> cannot find symbol
> symbol  : class HtmlTree
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[90,12]
> cannot find symbol
> symbol  : class TreeModel
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[93,36]
> cannot find symbol
> symbol  : class TreePath
> location: class org.apache.myfaces.custom.tree.taglib.AbstractTreeTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[109,33]
> cannot find symbol
> symbol  : class HtmlCommandNavigation
> location: class
> org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[111,16]
> cannot find symbol
> symbol  : class HtmlCommandNavigation
> location: class
> org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[111,54]
> cannot find symbol
> symbol  : class HtmlCommandNavigation
> location: class
> org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[115,20]
> cannot find symbol
> symbol  : class HtmlCommandNavigation
> location: class
> org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navigation\AbstractHtmlPanelNavigation.java:[115,55]
> cannot find symbol
> symbol  : class HtmlCommandNavigation
> location: class
> org.apache.myfaces.custom.navigation.AbstractHtmlPanelNavigation
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[284,13]
> cannot find symbol
> symbol  : variable UserRoleUtils
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[318,35]
> cannot find symbol
> symbol  : class HtmlPanelNavigationMenu
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[325,8]
> cannot find symbol
> symbol  : class HtmlPanelNavigationMenu
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[325,40]
> cannot find symbol
> symbol  : class HtmlPanelNavigationMenu
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[335,29]
> cannot find symbol
> symbol  : class HtmlCommandNavigationItem
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[336,16]
> cannot find symbol
> symbol  : class HtmlCommandNavigationItem
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\navmenu\AbstractUINavigationMenuItem.java:[336,53]
> cannot find symbol
> symbol  : class HtmlCommandNavigationItem
> location: class
> org.apache.myfaces.custom.navmenu.AbstractUINavigationMenuItem
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\updateactionlistener\UpdateActionListenerTag.java:[127,16]
> cannot find symbol
> symbol  : class UpdateActionListener
> location: class
> org.apache.myfaces.custom.updateactionlistener.UpdateActionListenerTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\updateactionlistener\UpdateActionListenerTag.java:[127,46]
> cannot find symbol
> symbol  : class UpdateActionListener
> location: class
> org.apache.myfaces.custom.updateactionlistener.UpdateActionListenerTag
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\aliasbean\AliasBean.java:[319,29]
> cannot find symbol
> symbol  : class FacesEventWrapper
> location: class org.apache.myfaces.custom.aliasbean.AliasBean
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\aliasbean\AliasBean.java:[326,29]
> cannot find symbol
> symbol  : class FacesEvent
>

Re: Setting up tomahawk 1.2

Posted by Ganesh <ga...@j4fry.org>.
Hi,

If I run mvn without further option I get java.lang.OutOfMemoryError: 
Java heap space, so I'm doing /set MAVEN_OPTS/=-Xmx1024m before running 
mvn install.

I've tried mvn clean (BUILD SUCCESSFULL) and mvn install > log.txt (see 
attachment, BUILD FAILURE  ... is it ok to send attachments over the list?).

Can you have a look at my log, maybe compare it to the one that is 
created on your machine or send me the output of mvn install > log.txt 
on your machine?

Best Regards,
Ganesh

Leonardo Uribe schrieb:
> Hi
>
> 2009/5/6 Ganesh <ganesh@j4fry.org <ma...@j4fry.org>>
>
>     Hi Leonardo,
>
>     Currently I'm trying to set up the tomahawk project on my system
>     to package tomahwak-1.1.9-SNAPSHOT.jar as well as
>     tomahawk12-1.1.9-SNAPSHOT.jar. I've checked out the tomahawk trunk
>     and run mvn. It works fine for
>     core/target/tomahwak-1.1.9-SNAPSHOT.jar. When going for tomahawk12
>     it fails. It unpacks the shared-sources and the tomahwak-1.1.9 jar
>     but when compiling the tomahwak-1.1.9 classes aren't found on the
>     build path:
>
>     [INFO] Configured Artifact:
>     org.apache.myfaces.tomahawk:tomahawk:1.1.9-SNAPSHOT:jar
>     [INFO] Unpacking C:\Dokumente und
>     Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jarto
>     C:\projects\tomahawk\core12\target\tomahawk11_resources
>     with Includes null and
>     excludes:**/*.class,**/META-INF/**,META-INF/componentClass12.vm,META-INF/facelets-taglib.vm,META-INF/faces-config12.vm,META-INF/LICENSE.txt,META-INF/licenses/dojo-LICENSE.TXT,META-INF/licenses/i18n-LICENSE.txt,META-INF/licenses/jscookmenu-LICENSE.txt,META-INF/licenses/kupu-LICENSE.txt,META-INF/licenses/prototype-LICENSE.txt,META-INF/licenses/scriptaculous-LICENSE.txt,META-INF/NOTICE.txt,META-INF/tagClass12.vm,META-INF/tagConverterClass12.vm,META-INF/tagValidatorClass12.vm,META-INF/tomahawk12.vm,META-INF/validatorClass12.vm,META-INF/xdoc-component.vm,META-INF/xdoc-converter.vm,META-INF/xdoc-tag.vm,META-INF/xdoc-validator.vm
>     [INFO] [resources:resources]
>     [INFO] Using default encoding to copy filtered resources.
>     [INFO] [compiler:compile]
>     [INFO] Compiling 187 source files to
>     C:\projects\tomahawk\core12\target\classes
>     [INFO]
>     ------------------------------------------------------------------------
>     [ERROR] BUILD FAILURE
>     [INFO]
>     ------------------------------------------------------------------------
>     [INFO] Compilation failure
>
>     C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[26,37]
>     cannot find symbol
>     symbol  : class HtmlTree
>     location: package org.apache.myfaces.custom.tree
>
>     .... (many more errors, no classes from
>     tomahawk-1.1.9-SNAPSHOT.jar are on the compile path)
>
>
>     Do I have a problem with my maven version? I'm using Apache Maven
>     2.1.0 (r755702; 2009-03-18 20:10:27+0100). Is there something else
>     I need to set up in order to compile tomahawk12?
>
>
> It should work, but I'm using maven 2.0.9. This behavior indicates 
> that something is not generated. I'll try with 2.1.0 to see what 
> happens, but there are no special set up required to compile tomahawk 
> core12. Maybe try mvn clean and then mvn install from tomahawk 
> directory to compile everything in order, because core12 uses core to 
> get most of the code (in few word core12 = some code from core + some 
> specific code from core12 + shared 3.0.x + regenerate everything for 
> jsf 1.2) 
>
> regards
>
> Leonardo Uribe
>  
>
>
>     Best Regards,
>     Ganesh
>
>

Re: Setting up tomahawk 1.2

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

2009/5/6 Ganesh <ga...@j4fry.org>

> Hi Leonardo,
>
> Currently I'm trying to set up the tomahawk project on my system to package
> tomahwak-1.1.9-SNAPSHOT.jar as well as tomahawk12-1.1.9-SNAPSHOT.jar. I've
> checked out the tomahawk trunk and run mvn. It works fine for
> core/target/tomahwak-1.1.9-SNAPSHOT.jar. When going for tomahawk12 it fails.
> It unpacks the shared-sources and the tomahwak-1.1.9 jar but when compiling
> the tomahwak-1.1.9 classes aren't found on the build path:
>
> [INFO] Configured Artifact:
> org.apache.myfaces.tomahawk:tomahawk:1.1.9-SNAPSHOT:jar
> [INFO] Unpacking C:\Dokumente und
> Einstellungen\Ganesh\.m2\repository\org\apache\myfaces\tomahawk\tomahawk\1.1.9-SNAPSHOT\tomahawk-1.1.9-SNAPSHOT.jarto
> C:\projects\tomahawk\core12\target\tomahawk11_resources
> with Includes null and
> excludes:**/*.class,**/META-INF/**,META-INF/componentClass12.vm,META-INF/facelets-taglib.vm,META-INF/faces-config12.vm,META-INF/LICENSE.txt,META-INF/licenses/dojo-LICENSE.TXT,META-INF/licenses/i18n-LICENSE.txt,META-INF/licenses/jscookmenu-LICENSE.txt,META-INF/licenses/kupu-LICENSE.txt,META-INF/licenses/prototype-LICENSE.txt,META-INF/licenses/scriptaculous-LICENSE.txt,META-INF/NOTICE.txt,META-INF/tagClass12.vm,META-INF/tagConverterClass12.vm,META-INF/tagValidatorClass12.vm,META-INF/tomahawk12.vm,META-INF/validatorClass12.vm,META-INF/xdoc-component.vm,META-INF/xdoc-converter.vm,META-INF/xdoc-tag.vm,META-INF/xdoc-validator.vm
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 187 source files to
> C:\projects\tomahawk\core12\target\classes
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Compilation failure
>
> C:\projects\tomahawk\core12\src\main\java\org\apache\myfaces\custom\tree\taglib\AbstractTreeTag.java:[26,37]
> cannot find symbol
> symbol  : class HtmlTree
> location: package org.apache.myfaces.custom.tree
>
> .... (many more errors, no classes from tomahawk-1.1.9-SNAPSHOT.jar are on
> the compile path)
>
>
> Do I have a problem with my maven version? I'm using Apache Maven 2.1.0
> (r755702; 2009-03-18 20:10:27+0100). Is there something else I need to set
> up in order to compile tomahawk12?
>

It should work, but I'm using maven 2.0.9. This behavior indicates that
something is not generated. I'll try with 2.1.0 to see what happens, but
there are no special set up required to compile tomahawk core12. Maybe try
mvn clean and then mvn install from tomahawk directory to compile everything
in order, because core12 uses core to get most of the code (in few word
core12 = some code from core + some specific code from core12 + shared 3.0.x
+ regenerate everything for jsf 1.2)

regards

Leonardo Uribe


>
> Best Regards,
> Ganesh
>