You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by Marshall Schor <ms...@schor.com> on 2012/09/15 23:01:33 UTC

Strange problem with Javadoc generation and JVMs

While checking the release candidate for UIMA AS 2.4.0, I find I'm having
trouble building from source (from the source-release.zip), at the
generate-javadoc step.

When I run using an Oracle JVM I see 9 Warnings from the JavaDoc (I've copied
these below).
I examined the first one: it says that the (parameterized) type
o.a.camel.impl.DefaultComponent doesn't take parameters, but when I look this
up, it seems it does.  So the warning seems wrong?

But, even worse, when I run maven using a recent IBM JVM (any after release
6/service-release 8/fixpack-1), such as the lastest Java 7 service release 2, I
get a summary message listing a huge number of Java doc errors (> 2.5 million)
and warnings, followed by a JVM out-of-memory error (not fixed when even with a
2GB -Xmx...)

[INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
[INFO]
2577734 errors
642448 warnings
[ERROR] Java heap space -> [Help 1]
java.lang.OutOfMemoryError: Java heap space
        at java.lang.StringBuffer.ensureCapacityImpl(StringBuffer.java:338)
        at java.lang.StringBuffer.append(StringBuffer.java:204)
        at
org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:4989)

Anyone else have this issue, or figured out what's going on?

-Marshall


Here's the output for 9 warnings when running with older IBM JVM's or Oracle JVM:

[INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
[INFO]
9 warnings

\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:33:
type org.apache.camel.impl.DefaultComponent does not take parameters
public class UimaAsComponent extends DefaultComponent<Exchange> {
^
\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:36:
type org.apache.camel.Endpoint does not take parameters
protected Endpoint<Exchange> createEndpoint(String uri, String remaining,
^
\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:34:
type org.apache.camel.impl.DefaultEndpoint does not take parameters
public class UimaAsEndpoint extends DefaultEndpoint<Exchange> {
^
\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:84:
type org.apache.camel.Consumer does not take parameters
public Consumer<Exchange> createConsumer(Processor arg0) throws Exception {
^
\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:88:
type org.apache.camel.Producer does not take parameters
public Producer<Exchange> createProducer() throws Exception {
^
\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:51:
type org.apache.camel.impl.DefaultProducer does not take parameters
public class UimaAsProducer extends DefaultProducer<Exchange> implements
AsyncProcessor {
^
\uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:144:
type org.apache.camel.Endpoint does not take parameters
public UimaAsProducer(String brokerAddress, String queue, Integer casPoolSize,
Integer timeout, Endpoint<Exchange> endpoint)
^
\uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
warning - @param argument "location" is not a parameter name.

\uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
warning - @param argument "samplingFrequency" is not a parameter name.



Re: Strange problem with Javadoc generation and JVMs

Posted by Marshall Schor <ms...@schor.com>.
I raised this as an issue with IBM Support.  They confirmed it is an issue and
plan to get a fix into the next service release of IBM Java 7, which should be
out sometime toward the end of the year.

The bug in Oracle's bug database is here:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7091528

-Marshall

On 9/19/2012 11:53 AM, Jaroslaw Cwiklik wrote:
> Marshall, I will note the problem as an known issue/limitation in the
> uima-as README.
>
> The problem is with a newer IBM java JDK and beyond our control. I dont
> consider this a blocker for uima-as release.
>
> I encourage you and others to  resume testing RC1. Please report any issues
> you may find.
>
> Thanks, Jerry
>
> On Tue, Sep 18, 2012 at 5:39 PM, Marshall Schor <ms...@schor.com> wrote:
>
>> see https://bugzilla.redhat.com/show_bug.cgi?id=719118
>>
>> looks like it will be fixed in JDK8, and then backported.
>>
>> Meanwhile, have to figure out a workaround...
>>
>> -Marshall
>>
>> On 9/18/2012 5:20 PM, Marshall Schor wrote:
>>> I did some more investigation.
>>>
>>> Once you run mvn install on the uima-as source and the javadoc
>> generation fails,
>>> it leaves in
>>> target/site/apidocs directory of the top level directory for the uima-as
>> build,
>>> a script that is the javadoc command that it ran.
>>>
>>> The good (?) news is that you can run this command script - which only
>> runs the
>>> javadoc executable (no maven involvement at all), and it will reproduce
>> the
>>> error.  Warning:  The error is multiple repetitions of lines that have
>> invalid
>>> character codes in them.  My poor terminal emulator goes crazy, rings
>> it's
>>> "bell" multiple times (rapidly at first, then slower - I guess it's
>> getting
>>> tired...), and refuses to cancel, quit, close, etc.  The only way I can
>> stop the
>>> bell ringing and close the window is to start to reboot the machine (the
>> normal
>>> ways of "killing" the terminal don't work).
>>>
>>> I modified the maven javadoc plugin temporarily, to debug this.  It
>> captures the
>>> error output as a big string.  It's so big you can't do much with it but
>> I did
>>> manage to figure out how to print out the 1st bit, something from the
>> middle,
>>> and the last bit.
>>>
>>> I'm posting all this in hopes that others more brilliant than me can
>> point to
>>> some issue that's causing this; remember, it only happens on "late"
>> versions of
>>> IBM Java 6 and 7.  I hope we can find a work-around!
>>>
>>> -Marshall
>>>
>>>
>>>
>>> Here's what the output looks like (I think the invalid chars were
>> replaced in my
>>> editor by ? etc.)
>>>
>>> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as
>> ---
>>> [INFO]
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
>>> x/monitor/BasicUimaJmxMonitorListener.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
>>> x/monitor/JmxMonitorListener.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
>>> x/monitor/ServiceMetrics.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
>>> x/monitor/SingleLineUimaJmxMonitorListener.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/mo
>>> nitor/statistics/AnalysisEnginePerformanceMetrics.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
>>> ient/UimaAsynchronousEngine.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
>>> ient/UimaAsBaseCallbackListener.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
>>> ient/UimaASStatusCallbackListener.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
>>> ient/UimaASProcessStatus.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
>>> ror/ErrorResult.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
>>> ror/ErrorResultComponentPath.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
>>> ror/ErrorResultTDs.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
>>> ceSpecifier/factory/DeploymentDescriptorFactory.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
>>> ceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
>>> ceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java...
>>> Loading source file
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
>>> ceSpecifier/factory/ServiceContext.java...
>>> Loading source files for package
>> org.apache.uima.resourceSpecifier.factory...
>>> Loading source files for package
>> org.apache.uima.resourceSpecifier.factory.impl...
>>> Loading source files for package org.apache.uima.tools.debug.util...
>>> Loading source files for package org.apache.uima...
>>> Loading source files for package org.apache.uima.collection.metadata...
>>> Loading source files for package org.apache.uima.resource.service.impl...
>>> Loading source files for package
>> org.apache.uima.analysis_engine.metadata.impl...
>>> Loading source files for package org.apache.uima.pear.tools...
>>> Loading source files for package org.apache.uima.flow...
>>> Loading source files for package
>>> org.apache.uima.analysis_engine.impl.compatibility...
>>> Loading source files for package org.apache.uima.pear.util...
>>> Loading source files for package org.apache.uima.search...
>>> Loading source files for package org.apache.uima.jcas.tcas...
>>> Loading source files for package org.apache.uima.analysis_engine...
>>> Loading source files for package org.apache.uima.analysis_component...
>>> Loading source files for package org.apache.uima.cas.impl...
>>> Loading source files for package
>> org.apache.uima.analysis_engine.metadata...
>>> Loading source files for package org.apache.uima.cas_data.impl...
>>> Loading source files for package org.apache.uima.cas_data...
>>> Loading source files for package org.apache.uima.internal.util...
>>> Loading source files for package org.apache.uima.jcas.cas...
>>> Loading source files for package
>> org.apache.uima.analysis_engine.annotator...
>>> Loading source files for package org.apache.uima.collection.impl...
>>> Loading source files for package org.apache.uima.resource.metadata...
>>> Loading source files for package org.apache.uima.resource...
>>> Loading source files for package org.apache.uima.jcas...
>>> Loading source files for package org.apache.uima.cas.text...
>>> Loading source files for package org.apache.uima.search.impl...
>>> Loading source files for package org.apache.uima.jcas.impl...
>>> Loading source files for package org.apache.uima.util...
>>> Loading source files for package org.apache.uima.cas...
>>> Loading source files for package org.apache.uima.cas.admin...
>>> Loading source files for package org.apache.uima.util.impl...
>>> Loading source files for package org.apache.uima.analysis_engine.impl...
>>> Loading source files for package org.apache.uima.examples...
>>> Loading source files for package org.apache.uima.analysis_engine.asb...
>>> Loading source files for package org.apache.uima.collection.base_cpm...
>>> Loading source files for package org.apache.uima.impl...
>>> Loading source files for package
>> org.apache.uima.resource.metadata.impl...
>>> Loading source files for package org.apache.uima.resource.impl...
>>> Loading source files for package org.apache.uima.collection...
>>> Loading source files for package org.apache.uima.uimacpp...
>>> Loading source files for package
>> org.apache.uima.analysis_engine.asb.impl...
>>> Loading source files for package org.apache.uima.internal.util.text...
>>> Loading source files for package
>> org.apache.uima.analysis_engine.service.impl...
>>> Loading source files for package
>> org.apache.uima.internal.util.rb_trees...
>>> Loading source files for package org.apache.uima.flow.impl...
>>> Loading source files for package
>> org.apache.uima.resourceSpecifier.impl...
>>> Loading source files for package org.apache.uima.resourceSpecifier...
>>> Loading source files for package org.apache.uima.adapter.jms.service...
>>> Loading source files for package org.apache.uima.adapter.jms...
>>> Loading source files for package org.apache.uima.adapter.jms.client...
>>> Loading source files for package org.apache.uima.adapter.jms.message...
>>> Loading source files for package org.apache.uima.jms.error.handler...
>>> Loading source files for package org.apache.uima.examples.as...
>>> Loading source files for package org.apache.uima.adapter.jms.activemq...
>>> Loading source files for package org.apache.uima.adapter.vinci.util...
>>> Loading source files for package org.apache.uima.adapter.vinci...
>>> Loading source files for package org.apache.uima.camel...
>>> Loading source files for package org.apache.uima.taeconfigurator...
>>> Loading source files for package
>> org.apache.uima.taeconfigurator.editors.xml...
>>> Loading source files for package
>> org.apache.uima.taeconfigurator.wizards...
>>> Loading source files for package
>> org.apache.uima.taeconfigurator.editors...
>>> Loading source files for package
>>> org.apache.uima.taeconfigurator.editors.ui.dialogs...
>>> Loading source files for package org.apache.uima.taeconfigurator.files...
>>> Loading source files for package org.apache.uima.taeconfigurator.model...
>>> Loading source files for package
>> org.apache.uima.taeconfigurator.editors.point...
>>> Loading source files for package
>> org.apache.uima.taeconfigurator.editors.ui...
>>> Loading source files for package org.apache.uima.tools.cvd...
>>> Loading source files for package org.apache.uima.tools...
>>> Loading source files for package org.apache.uima.tools.annot_view...
>>> Loading source files for package org.apache.uima.tools.jcasgen...
>>> Loading source files for package org.apache.uima.tools.pear.merger...
>>> Loading source files for package org.apache.uima.tools.images...
>>> Loading source files for package org.apache.uima.tools.cpm...
>>> Loading source files for package org.apache.uima.tools.docanalyzer...
>>> Loading source files for package org.apache.uima.tools.util.htmlview...
>>> Loading source files for package org.apache.uima.tools.pear.install...
>>> Loading source files for package org.apache.uima.tools.util.gui...
>>> Loading source files for package org.apache.uima.tools.stylemap...
>>> Loading source files for package org.apache.uima.tools.pear.packager...
>>> Loading source files for package org.apache.uima.tools.migration...
>>> Loading source files for package org.apache.uima.tools.cvd.tsview...
>>> Loading source files for package org.apache.uima.tools.components...
>>> Loading source files for package org.apache.uima.tools.cvd.control...
>>> Loading source files for package org.apache.uima.tools.viewer...
>>> Loading source files for package org.apache.uima.test.junit_extension...
>>> Loading source files for package
>> org.apache.uima.collection.impl.cpm.container...
>>> Loading source files for package
>> org.apache.uima.collection.impl.metadata...
>>> Loading source files for package
>> org.apache.uima.collection.impl.metadata.cpe...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.cpm.container.deployer...
>>> Loading source files for package org.apache.uima.cas_data.impl.vinci...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.cpm.vinci.cas_data...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.cpm.container.deployer.vinci...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.base_cpm.container.deployer...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.cpm.container.deployer.vns...
>>> Loading source files for package
>> org.apache.uima.collection.impl.cpm.engine...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.base_cpm.container...
>>> Loading source files for package org.apache.uima.collection.impl.cpm...
>>> Loading source files for package
>> org.apache.uima.collection.impl.cpm.vinci...
>>> Loading source files for package
>> org.apache.uima.collection.impl.cpm.utils...
>>> Loading source files for package
>>> org.apache.uima.collection.impl.cpm.container.deployer.socket...
>>> Loading source files for package org.apache.uima.tools.images.internal...
>>> Loading source files for package org.apache.uima.dde.internal.provider...
>>> Loading source files for package org.apache.uima.editors.dde.internal...
>>> Loading source files for package org.apache.uima.dde.internal.details...
>>> Loading source files for package org.apache.uima.dde.internal.page...
>>> Loading source files for package org.apache.uima.dde.internal.hover...
>>> Loading source files for package
>> org.apache.uima.tools.internal.ui.forms...
>>> Loading source files for package
>> org.apache.uima.tools.internal.uima.util...
>>> Loading source files for package org.apache.uima.dde.internal...
>>> Loading source files for package
>> org.apache.uima.tools.internal.cde.uima.util...
>>> Loading source files for package org.apache.uima.dde.internal.wizards...
>>> 2578104 errors
>>> 642584 warnings
>>>
>>> Javadoc error string length is 86,245,295
>>>
>>> First part
>>>
>>> warning: [options] bootstrap class path not set in conjunction with
>> -source 1.5
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
>>> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
>> unmappable
>>> character for encoding UTF-8
>>> ????   1 ? ? ? ??
>>> ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
>>> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
>> unmappable
>>> character for encoding UTF-8
>>> ????   1 ? ? ? ??
>>>  ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
>>> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
>> unmappable
>>> character for encoding UTF-8
>>> ????   1 ? ? ? ??
>>>   ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
>>> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
>> unmappable
>>> character for encoding UTF-8
>>> ????   1 ? ? ? ??
>>>    ^
>>>
>>>
>>> MiddlePart
>>>
>>>
>> m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.class):24:
>>> warning: unm
>>> appable character for encoding UTF-8
>>>  ?   w ? x )   ? ?   ? * +   ? % , ? '   > ? ?   ?*+? ??   ? (
>>>                                                        ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
>>> ss):25: warning: unmappable character for encoding UTF-8
>>>  ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
>>>      ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
>>> ss):25: warning: unmappable character for encoding UTF-8
>>>  ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
>>>          ^
>>>
>>> LastPart
>>>                                                         ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
>>> rocessor.class):89: error: illegal character: \0
>>>  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P?
>> ?Y+??M?N?  Y?
>>>                                                          ^
>>>
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
>>> rocessor.class):89: error: illegal character: \1
>>>  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P?
>> ?Y+?M?N?   Y?
>>>                                                           ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
>>> rocessor.class):89: error: illegal character: \22
>>>  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P?
>> ?Y+?M?N?   Y?
>>>                                                            ^
>>>
>> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
>>> rocessor.class):89: error: illegal character: \0
>>>
>>>
>>>
>>>
>>>
>>> This script (on my windows machine) looks like this:
>>> c:\p\j\ibm7sr2\jre\..\bin\javadoc.exe @options
>>>
>>> So, it's calling out the specific java I'm using and passing an options
>> file
>>> which looks like this (some extra newlines inserted by hand ...)
>>>
>>> -classpath
>>>
>> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/classes;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-jms/2.4.0/camel-jms-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-io/7.0.1.v20091125/jetty-io-7.0.1.v20091125.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/josql/1.5/josql-1.5.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.2/geronimo-servlet_2.5_spec-1.2.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/xbean/xbean-spring/3.7/xbean-spring-3.7.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/fusesource/commonman/commons-management/1.0/commons-management-1.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-security/7.0.1.v20091125/jetty-security-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime-deployeditor/2.4.0/uimaj-ep-runtime-deployeditor-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-core/2.4.0/uimaj-core-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/2.0.0/geronimo-j2ee-connector_1.5_spec-2.0.0.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-websocket/7.0.1.v20091125/jetty-websocket-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-asm/3.0.3.RELEASE/spring-asm-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-tx/3.0.3.RELEASE/spring-tx-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-core/2.4.0/uimaj-as-core-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-webmvc/3.0.3.RELEASE/spring-webmvc-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-aop/3.0.3.RELEASE/spring-aop-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/asm/asm-commons/3.1/asm-commons-3.1.jar;C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-jms/2.4.0/uimaj-as-jms-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-activemq/2.4.0/uimaj-as-activemq-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar
>> ;C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-expression/3.0.3.RELEASE/spring-expression-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1/geronimo-jms_1.1_spec-1.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-adapter-vinci/2.4.0/uimaj-adapter-vinci-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-beanutils/commons-beanutils/1.6.1/commons-beanutils-1.6.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-camel/2.4.0/uimaj-as-camel-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-http/7.0.1.v20091125/jetty-http-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-osgi-runtime/2.4.0/uimaj-as-osgi-runtime-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/com/ibm/icu/icu4j/4.0.1/icu4j-4.0.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-camel/5.4.1/activemq-camel-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-configurator/2.4.0/uimaj-ep-configurator-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-tools/2.4.0/uimaj-tools-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-test-util/2.4.0/uimaj-test-util-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/axis/axis/1.2-RC1/axis-1.2-RC1.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-xml/7.0.1.v20091125/jetty-xml-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime/2.4.0/uimaj-ep-runtime-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/xmlbeans/xmlbeans/2.4.0/xmlbeans-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activeio-core/3.1.2/activeio-core-3.1.2.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-web/3.0.3.RELEASE/spring-web-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-optional/5.4.1/activemq-optional-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-core/3.0.3.RELEASE/spring-core-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-continuation/7.0.1.v20091125/jetty-continuation-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-net/commons-net/2.0/commons-net-2.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-all/5.4.1/activemq-all-5.4.1.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/asm/asm/3.1/asm-3.1.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-server/7.0.1.v20091125/jetty-server-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/kahadb/5.4.1/kahadb-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-webapp/7.0.1.v20091125/jetty-webapp-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-servlet/7.0.1.v20091125/jetty-servlet-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/org/jasypt/jasypt/1.6/jasypt-1.6.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-core/1.2.1/spring-osgi-core-1.2.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-beans/3.0.3.RELEASE/spring-beans-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-io/1.2.1/spring-osgi-io-1.2.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-jms/3.0.3.RELEASE/spring-jms-3.0.3.RELEASE.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-pool/5.4.1/activemq-pool-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-core/5.4.1/activemq-core-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-web/5.4.1/activemq-web-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/gentlyweb-utils/1.5/gentlyweb-utils-1.5.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-console/5.4.1/activemq-console-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-deployeditor/2.4.0/uimaj-ep-deployeditor-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-core/2.4.0/camel-core-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-jaas/5.4.1/activemq-jaas-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/jVinci/2.4.0/jVinci-2.4.0.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/jdom/jdom/1.0/jdom-1.0.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/aggregate/jetty-all-server/7.0.1.v20091125/jetty-all-server-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-util/7.0.1.v20091125/jetty-util-7.0.1.v20091125.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/xmlpull/xmlpull/1.1.3.4d_b4_min/xmlpull-1.1.3.4d_b4_min.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context/3.0.3.RELEASE/spring-context-3.0.3.RELEASE.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context-support/3.0.3.RELEASE/spring-context-support-3.0.3.RELEASE.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/asm/asm-tree/3.1/asm-tree-3.1.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-cpe/2.4.0/uimaj-cpe-2.4.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-spring/5.4.1/activemq-spring-5.4.1.jar;
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-document-annotation/2.4.0/uimaj-document-annotation-2.4.0.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/rome/rome/0.8/rome-0.8.jar;
>>>
>> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-spring/2.4.0/camel-spring-2.4.0.jar;
>>> C:/Users/IBM_ADMIN/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar'
>>> -encoding
>>> 'UTF-8'
>>> -exclude
>>>
>> org.apache.uima.aae:org.apache.uima.aae.client:org.apache.uima.aae.controller:org.apache.uima.aae.delegate:
>> org.apache.uima.aae.deploymentDescriptor:org.apache.uima.aae.error:org.apache.uima.aae.error.handler:
>> org.apache.uima.aae.handler:org.apache.uima.aae.handler.input:org.apache.uima.aae.jmx:org.apache.uima.aae.jmx.monitor:org.apache.uima.aae.message:
>> org.apache.uima.aae.monitor:org.apache.uima.aae.monitor.statistics:org.apache.uima.aae.spi.transport:
>>> org.apache.uima.aae.spi.transport.vm
>>> -protected
>>> -source
>>> '5'
>>> -sourcepath
>>>
>> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/uimaj-as-core/src/main/java'
>>> -subpackages
>>> org.apache.uima
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/BasicUimaJmxMonitorListener.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/JmxMonitorListener.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/ServiceMetrics.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/SingleLineUimaJmxMonitorListener.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/monitor/statistics/AnalysisEnginePerformanceMetrics.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsynchronousEngine.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsBaseCallbackListener.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASStatusCallbackListener.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASProcessStatus.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResult.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultComponentPath.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultTDs.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/DeploymentDescriptorFactory.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java
>>>
>> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/ServiceContext.java
>>> -author
>>> -bottom
>>> 'Copyright &#169; 2006-2012 <a href="http://www.apache.org/">The Apache
>> Software
>>> Foundation</a>. All Rights Reserved.'
>>> -charset
>>> 'UTF-8'
>>> -d
>>>
>> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/site/apidocs'
>>> -docencoding
>>> 'UTF-8'
>>> -doctitle
>>> 'Apache UIMA Async Scaleout Java SDK 2.4.0 User-Level API Documentation'
>>> -group
>>> 'Packages' '*'
>>> -link
>>> 'http://uima.apache.org/d/uimaj-2.4.0/apidocs'
>>> -linkoffline
>>> 'http://download.oracle.com/javase/1.5.0/docs/api'
>>>
>> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/javadoc-bundle-options'
>>> -tag
>>> "generated:X"
>>> -tag
>>> "ordered:X"
>>> -tag
>>> "modifiable:X"
>>> -tag
>>> "model:X"
>>> -tag
>>> "pre:X"
>>> -use
>>> -version
>>> -windowtitle
>>> 'Apache UIMA-AS Java SDK 2.4.0 User-Level API Documentation'
>>>
>>>
>>>
>>>
>>>
>>


Re: Strange problem with Javadoc generation and JVMs

Posted by Jaroslaw Cwiklik <ui...@gmail.com>.
Marshall, I will note the problem as an known issue/limitation in the
uima-as README.

The problem is with a newer IBM java JDK and beyond our control. I dont
consider this a blocker for uima-as release.

I encourage you and others to  resume testing RC1. Please report any issues
you may find.

Thanks, Jerry

On Tue, Sep 18, 2012 at 5:39 PM, Marshall Schor <ms...@schor.com> wrote:

> see https://bugzilla.redhat.com/show_bug.cgi?id=719118
>
> looks like it will be fixed in JDK8, and then backported.
>
> Meanwhile, have to figure out a workaround...
>
> -Marshall
>
> On 9/18/2012 5:20 PM, Marshall Schor wrote:
> > I did some more investigation.
> >
> > Once you run mvn install on the uima-as source and the javadoc
> generation fails,
> > it leaves in
> > target/site/apidocs directory of the top level directory for the uima-as
> build,
> > a script that is the javadoc command that it ran.
> >
> > The good (?) news is that you can run this command script - which only
> runs the
> > javadoc executable (no maven involvement at all), and it will reproduce
> the
> > error.  Warning:  The error is multiple repetitions of lines that have
> invalid
> > character codes in them.  My poor terminal emulator goes crazy, rings
> it's
> > "bell" multiple times (rapidly at first, then slower - I guess it's
> getting
> > tired...), and refuses to cancel, quit, close, etc.  The only way I can
> stop the
> > bell ringing and close the window is to start to reboot the machine (the
> normal
> > ways of "killing" the terminal don't work).
> >
> > I modified the maven javadoc plugin temporarily, to debug this.  It
> captures the
> > error output as a big string.  It's so big you can't do much with it but
> I did
> > manage to figure out how to print out the 1st bit, something from the
> middle,
> > and the last bit.
> >
> > I'm posting all this in hopes that others more brilliant than me can
> point to
> > some issue that's causing this; remember, it only happens on "late"
> versions of
> > IBM Java 6 and 7.  I hope we can find a work-around!
> >
> > -Marshall
> >
> >
> >
> > Here's what the output looks like (I think the invalid chars were
> replaced in my
> > editor by ? etc.)
> >
> > [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as
> ---
> > [INFO]
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> > x/monitor/BasicUimaJmxMonitorListener.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> > x/monitor/JmxMonitorListener.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> > x/monitor/ServiceMetrics.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> > x/monitor/SingleLineUimaJmxMonitorListener.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/mo
> > nitor/statistics/AnalysisEnginePerformanceMetrics.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> > ient/UimaAsynchronousEngine.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> > ient/UimaAsBaseCallbackListener.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> > ient/UimaASStatusCallbackListener.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> > ient/UimaASProcessStatus.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
> > ror/ErrorResult.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
> > ror/ErrorResultComponentPath.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
> > ror/ErrorResultTDs.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> > ceSpecifier/factory/DeploymentDescriptorFactory.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> > ceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> > ceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java...
> > Loading source file
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> > ceSpecifier/factory/ServiceContext.java...
> > Loading source files for package
> org.apache.uima.resourceSpecifier.factory...
> > Loading source files for package
> org.apache.uima.resourceSpecifier.factory.impl...
> > Loading source files for package org.apache.uima.tools.debug.util...
> > Loading source files for package org.apache.uima...
> > Loading source files for package org.apache.uima.collection.metadata...
> > Loading source files for package org.apache.uima.resource.service.impl...
> > Loading source files for package
> org.apache.uima.analysis_engine.metadata.impl...
> > Loading source files for package org.apache.uima.pear.tools...
> > Loading source files for package org.apache.uima.flow...
> > Loading source files for package
> > org.apache.uima.analysis_engine.impl.compatibility...
> > Loading source files for package org.apache.uima.pear.util...
> > Loading source files for package org.apache.uima.search...
> > Loading source files for package org.apache.uima.jcas.tcas...
> > Loading source files for package org.apache.uima.analysis_engine...
> > Loading source files for package org.apache.uima.analysis_component...
> > Loading source files for package org.apache.uima.cas.impl...
> > Loading source files for package
> org.apache.uima.analysis_engine.metadata...
> > Loading source files for package org.apache.uima.cas_data.impl...
> > Loading source files for package org.apache.uima.cas_data...
> > Loading source files for package org.apache.uima.internal.util...
> > Loading source files for package org.apache.uima.jcas.cas...
> > Loading source files for package
> org.apache.uima.analysis_engine.annotator...
> > Loading source files for package org.apache.uima.collection.impl...
> > Loading source files for package org.apache.uima.resource.metadata...
> > Loading source files for package org.apache.uima.resource...
> > Loading source files for package org.apache.uima.jcas...
> > Loading source files for package org.apache.uima.cas.text...
> > Loading source files for package org.apache.uima.search.impl...
> > Loading source files for package org.apache.uima.jcas.impl...
> > Loading source files for package org.apache.uima.util...
> > Loading source files for package org.apache.uima.cas...
> > Loading source files for package org.apache.uima.cas.admin...
> > Loading source files for package org.apache.uima.util.impl...
> > Loading source files for package org.apache.uima.analysis_engine.impl...
> > Loading source files for package org.apache.uima.examples...
> > Loading source files for package org.apache.uima.analysis_engine.asb...
> > Loading source files for package org.apache.uima.collection.base_cpm...
> > Loading source files for package org.apache.uima.impl...
> > Loading source files for package
> org.apache.uima.resource.metadata.impl...
> > Loading source files for package org.apache.uima.resource.impl...
> > Loading source files for package org.apache.uima.collection...
> > Loading source files for package org.apache.uima.uimacpp...
> > Loading source files for package
> org.apache.uima.analysis_engine.asb.impl...
> > Loading source files for package org.apache.uima.internal.util.text...
> > Loading source files for package
> org.apache.uima.analysis_engine.service.impl...
> > Loading source files for package
> org.apache.uima.internal.util.rb_trees...
> > Loading source files for package org.apache.uima.flow.impl...
> > Loading source files for package
> org.apache.uima.resourceSpecifier.impl...
> > Loading source files for package org.apache.uima.resourceSpecifier...
> > Loading source files for package org.apache.uima.adapter.jms.service...
> > Loading source files for package org.apache.uima.adapter.jms...
> > Loading source files for package org.apache.uima.adapter.jms.client...
> > Loading source files for package org.apache.uima.adapter.jms.message...
> > Loading source files for package org.apache.uima.jms.error.handler...
> > Loading source files for package org.apache.uima.examples.as...
> > Loading source files for package org.apache.uima.adapter.jms.activemq...
> > Loading source files for package org.apache.uima.adapter.vinci.util...
> > Loading source files for package org.apache.uima.adapter.vinci...
> > Loading source files for package org.apache.uima.camel...
> > Loading source files for package org.apache.uima.taeconfigurator...
> > Loading source files for package
> org.apache.uima.taeconfigurator.editors.xml...
> > Loading source files for package
> org.apache.uima.taeconfigurator.wizards...
> > Loading source files for package
> org.apache.uima.taeconfigurator.editors...
> > Loading source files for package
> > org.apache.uima.taeconfigurator.editors.ui.dialogs...
> > Loading source files for package org.apache.uima.taeconfigurator.files...
> > Loading source files for package org.apache.uima.taeconfigurator.model...
> > Loading source files for package
> org.apache.uima.taeconfigurator.editors.point...
> > Loading source files for package
> org.apache.uima.taeconfigurator.editors.ui...
> > Loading source files for package org.apache.uima.tools.cvd...
> > Loading source files for package org.apache.uima.tools...
> > Loading source files for package org.apache.uima.tools.annot_view...
> > Loading source files for package org.apache.uima.tools.jcasgen...
> > Loading source files for package org.apache.uima.tools.pear.merger...
> > Loading source files for package org.apache.uima.tools.images...
> > Loading source files for package org.apache.uima.tools.cpm...
> > Loading source files for package org.apache.uima.tools.docanalyzer...
> > Loading source files for package org.apache.uima.tools.util.htmlview...
> > Loading source files for package org.apache.uima.tools.pear.install...
> > Loading source files for package org.apache.uima.tools.util.gui...
> > Loading source files for package org.apache.uima.tools.stylemap...
> > Loading source files for package org.apache.uima.tools.pear.packager...
> > Loading source files for package org.apache.uima.tools.migration...
> > Loading source files for package org.apache.uima.tools.cvd.tsview...
> > Loading source files for package org.apache.uima.tools.components...
> > Loading source files for package org.apache.uima.tools.cvd.control...
> > Loading source files for package org.apache.uima.tools.viewer...
> > Loading source files for package org.apache.uima.test.junit_extension...
> > Loading source files for package
> org.apache.uima.collection.impl.cpm.container...
> > Loading source files for package
> org.apache.uima.collection.impl.metadata...
> > Loading source files for package
> org.apache.uima.collection.impl.metadata.cpe...
> > Loading source files for package
> > org.apache.uima.collection.impl.cpm.container.deployer...
> > Loading source files for package org.apache.uima.cas_data.impl.vinci...
> > Loading source files for package
> > org.apache.uima.collection.impl.cpm.vinci.cas_data...
> > Loading source files for package
> > org.apache.uima.collection.impl.cpm.container.deployer.vinci...
> > Loading source files for package
> > org.apache.uima.collection.impl.base_cpm.container.deployer...
> > Loading source files for package
> > org.apache.uima.collection.impl.cpm.container.deployer.vns...
> > Loading source files for package
> org.apache.uima.collection.impl.cpm.engine...
> > Loading source files for package
> > org.apache.uima.collection.impl.base_cpm.container...
> > Loading source files for package org.apache.uima.collection.impl.cpm...
> > Loading source files for package
> org.apache.uima.collection.impl.cpm.vinci...
> > Loading source files for package
> org.apache.uima.collection.impl.cpm.utils...
> > Loading source files for package
> > org.apache.uima.collection.impl.cpm.container.deployer.socket...
> > Loading source files for package org.apache.uima.tools.images.internal...
> > Loading source files for package org.apache.uima.dde.internal.provider...
> > Loading source files for package org.apache.uima.editors.dde.internal...
> > Loading source files for package org.apache.uima.dde.internal.details...
> > Loading source files for package org.apache.uima.dde.internal.page...
> > Loading source files for package org.apache.uima.dde.internal.hover...
> > Loading source files for package
> org.apache.uima.tools.internal.ui.forms...
> > Loading source files for package
> org.apache.uima.tools.internal.uima.util...
> > Loading source files for package org.apache.uima.dde.internal...
> > Loading source files for package
> org.apache.uima.tools.internal.cde.uima.util...
> > Loading source files for package org.apache.uima.dde.internal.wizards...
> > 2578104 errors
> > 642584 warnings
> >
> > Javadoc error string length is 86,245,295
> >
> > First part
> >
> > warning: [options] bootstrap class path not set in conjunction with
> -source 1.5
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> > ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
> unmappable
> > character for encoding UTF-8
> > ????   1 ? ? ? ??
> > ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> > ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
> unmappable
> > character for encoding UTF-8
> > ????   1 ? ? ? ??
> >  ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> > ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
> unmappable
> > character for encoding UTF-8
> > ????   1 ? ? ? ??
> >   ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> > ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning:
> unmappable
> > character for encoding UTF-8
> > ????   1 ? ? ? ??
> >    ^
> >
> >
> > MiddlePart
> >
> >
> m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.class):24:
> > warning: unm
> > appable character for encoding UTF-8
> >  ?   w ? x )   ? ?   ? * +   ? % , ? '   > ? ?   ?*+? ??   ? (
> >                                                        ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
> > ss):25: warning: unmappable character for encoding UTF-8
> >  ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
> >      ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
> > ss):25: warning: unmappable character for encoding UTF-8
> >  ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
> >          ^
> >
> > LastPart
> >                                                         ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> > rocessor.class):89: error: illegal character: \0
> >  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P?
> ?Y+??M?N?  Y?
> >                                                          ^
> >
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> > rocessor.class):89: error: illegal character: \1
> >  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P?
> ?Y+?M?N?   Y?
> >                                                           ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> > rocessor.class):89: error: illegal character: \22
> >  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P?
> ?Y+?M?N?   Y?
> >                                                            ^
> >
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> > rocessor.class):89: error: illegal character: \0
> >
> >
> >
> >
> >
> > This script (on my windows machine) looks like this:
> > c:\p\j\ibm7sr2\jre\..\bin\javadoc.exe @options
> >
> > So, it's calling out the specific java I'm using and passing an options
> file
> > which looks like this (some extra newlines inserted by hand ...)
> >
> > -classpath
> >
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/classes;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-jms/2.4.0/camel-jms-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-io/7.0.1.v20091125/jetty-io-7.0.1.v20091125.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/josql/1.5/josql-1.5.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.2/geronimo-servlet_2.5_spec-1.2.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/xbean/xbean-spring/3.7/xbean-spring-3.7.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/fusesource/commonman/commons-management/1.0/commons-management-1.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-security/7.0.1.v20091125/jetty-security-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime-deployeditor/2.4.0/uimaj-ep-runtime-deployeditor-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-core/2.4.0/uimaj-core-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/2.0.0/geronimo-j2ee-connector_1.5_spec-2.0.0.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-websocket/7.0.1.v20091125/jetty-websocket-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-asm/3.0.3.RELEASE/spring-asm-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-tx/3.0.3.RELEASE/spring-tx-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-core/2.4.0/uimaj-as-core-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-webmvc/3.0.3.RELEASE/spring-webmvc-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-aop/3.0.3.RELEASE/spring-aop-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/asm/asm-commons/3.1/asm-commons-3.1.jar;C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-jms/2.4.0/uimaj-as-jms-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-activemq/2.4.0/uimaj-as-activemq-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar
> >
> ;C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-expression/3.0.3.RELEASE/spring-expression-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1/geronimo-jms_1.1_spec-1.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-adapter-vinci/2.4.0/uimaj-adapter-vinci-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-beanutils/commons-beanutils/1.6.1/commons-beanutils-1.6.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-camel/2.4.0/uimaj-as-camel-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-http/7.0.1.v20091125/jetty-http-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-osgi-runtime/2.4.0/uimaj-as-osgi-runtime-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/com/ibm/icu/icu4j/4.0.1/icu4j-4.0.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-camel/5.4.1/activemq-camel-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-configurator/2.4.0/uimaj-ep-configurator-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-tools/2.4.0/uimaj-tools-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-test-util/2.4.0/uimaj-test-util-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/axis/axis/1.2-RC1/axis-1.2-RC1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-xml/7.0.1.v20091125/jetty-xml-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime/2.4.0/uimaj-ep-runtime-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/xmlbeans/xmlbeans/2.4.0/xmlbeans-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activeio-core/3.1.2/activeio-core-3.1.2.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-web/3.0.3.RELEASE/spring-web-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-optional/5.4.1/activemq-optional-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-core/3.0.3.RELEASE/spring-core-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-continuation/7.0.1.v20091125/jetty-continuation-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-net/commons-net/2.0/commons-net-2.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-all/5.4.1/activemq-all-5.4.1.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/asm/asm/3.1/asm-3.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-server/7.0.1.v20091125/jetty-server-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/kahadb/5.4.1/kahadb-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-webapp/7.0.1.v20091125/jetty-webapp-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-servlet/7.0.1.v20091125/jetty-servlet-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/org/jasypt/jasypt/1.6/jasypt-1.6.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-core/1.2.1/spring-osgi-core-1.2.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-beans/3.0.3.RELEASE/spring-beans-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-io/1.2.1/spring-osgi-io-1.2.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-jms/3.0.3.RELEASE/spring-jms-3.0.3.RELEASE.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-pool/5.4.1/activemq-pool-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-core/5.4.1/activemq-core-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-web/5.4.1/activemq-web-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/gentlyweb-utils/1.5/gentlyweb-utils-1.5.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-console/5.4.1/activemq-console-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-deployeditor/2.4.0/uimaj-ep-deployeditor-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-core/2.4.0/camel-core-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-jaas/5.4.1/activemq-jaas-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/jVinci/2.4.0/jVinci-2.4.0.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/jdom/jdom/1.0/jdom-1.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/aggregate/jetty-all-server/7.0.1.v20091125/jetty-all-server-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-util/7.0.1.v20091125/jetty-util-7.0.1.v20091125.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/xmlpull/xmlpull/1.1.3.4d_b4_min/xmlpull-1.1.3.4d_b4_min.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context/3.0.3.RELEASE/spring-context-3.0.3.RELEASE.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context-support/3.0.3.RELEASE/spring-context-support-3.0.3.RELEASE.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/asm/asm-tree/3.1/asm-tree-3.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-cpe/2.4.0/uimaj-cpe-2.4.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-spring/5.4.1/activemq-spring-5.4.1.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-document-annotation/2.4.0/uimaj-document-annotation-2.4.0.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/rome/rome/0.8/rome-0.8.jar;
> >
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-spring/2.4.0/camel-spring-2.4.0.jar;
> > C:/Users/IBM_ADMIN/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar'
> > -encoding
> > 'UTF-8'
> > -exclude
> >
> org.apache.uima.aae:org.apache.uima.aae.client:org.apache.uima.aae.controller:org.apache.uima.aae.delegate:
> >
> org.apache.uima.aae.deploymentDescriptor:org.apache.uima.aae.error:org.apache.uima.aae.error.handler:
> >
> org.apache.uima.aae.handler:org.apache.uima.aae.handler.input:org.apache.uima.aae.jmx:org.apache.uima.aae.jmx.monitor:org.apache.uima.aae.message:
> >
> org.apache.uima.aae.monitor:org.apache.uima.aae.monitor.statistics:org.apache.uima.aae.spi.transport:
> > org.apache.uima.aae.spi.transport.vm
> > -protected
> > -source
> > '5'
> > -sourcepath
> >
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/uimaj-as-core/src/main/java'
> > -subpackages
> > org.apache.uima
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/BasicUimaJmxMonitorListener.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/JmxMonitorListener.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/ServiceMetrics.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/SingleLineUimaJmxMonitorListener.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/monitor/statistics/AnalysisEnginePerformanceMetrics.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsynchronousEngine.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsBaseCallbackListener.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASStatusCallbackListener.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASProcessStatus.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResult.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultComponentPath.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultTDs.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/DeploymentDescriptorFactory.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java
> >
> >
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/ServiceContext.java
> > -author
> > -bottom
> > 'Copyright &#169; 2006-2012 <a href="http://www.apache.org/">The Apache
> Software
> > Foundation</a>. All Rights Reserved.'
> > -charset
> > 'UTF-8'
> > -d
> >
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/site/apidocs'
> > -docencoding
> > 'UTF-8'
> > -doctitle
> > 'Apache UIMA Async Scaleout Java SDK 2.4.0 User-Level API Documentation'
> > -group
> > 'Packages' '*'
> > -link
> > 'http://uima.apache.org/d/uimaj-2.4.0/apidocs'
> > -linkoffline
> > 'http://download.oracle.com/javase/1.5.0/docs/api'
> >
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/javadoc-bundle-options'
> > -tag
> > "generated:X"
> > -tag
> > "ordered:X"
> > -tag
> > "modifiable:X"
> > -tag
> > "model:X"
> > -tag
> > "pre:X"
> > -use
> > -version
> > -windowtitle
> > 'Apache UIMA-AS Java SDK 2.4.0 User-Level API Documentation'
> >
> >
> >
> >
> >
>
>

Re: Strange problem with Javadoc generation and JVMs

Posted by Marshall Schor <ms...@schor.com>.
see https://bugzilla.redhat.com/show_bug.cgi?id=719118

looks like it will be fixed in JDK8, and then backported.

Meanwhile, have to figure out a workaround...

-Marshall

On 9/18/2012 5:20 PM, Marshall Schor wrote:
> I did some more investigation.
>
> Once you run mvn install on the uima-as source and the javadoc generation fails,
> it leaves in
> target/site/apidocs directory of the top level directory for the uima-as build,
> a script that is the javadoc command that it ran.
>
> The good (?) news is that you can run this command script - which only runs the
> javadoc executable (no maven involvement at all), and it will reproduce the
> error.  Warning:  The error is multiple repetitions of lines that have invalid
> character codes in them.  My poor terminal emulator goes crazy, rings it's
> "bell" multiple times (rapidly at first, then slower - I guess it's getting
> tired...), and refuses to cancel, quit, close, etc.  The only way I can stop the
> bell ringing and close the window is to start to reboot the machine (the normal
> ways of "killing" the terminal don't work).
>
> I modified the maven javadoc plugin temporarily, to debug this.  It captures the
> error output as a big string.  It's so big you can't do much with it but I did
> manage to figure out how to print out the 1st bit, something from the middle,
> and the last bit.   
>
> I'm posting all this in hopes that others more brilliant than me can point to
> some issue that's causing this; remember, it only happens on "late" versions of
> IBM Java 6 and 7.  I hope we can find a work-around!
>
> -Marshall
>
>
>
> Here's what the output looks like (I think the invalid chars were replaced in my
> editor by ? etc.)
>
> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
> [INFO]
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> x/monitor/BasicUimaJmxMonitorListener.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> x/monitor/JmxMonitorListener.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> x/monitor/ServiceMetrics.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
> x/monitor/SingleLineUimaJmxMonitorListener.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/mo
> nitor/statistics/AnalysisEnginePerformanceMetrics.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> ient/UimaAsynchronousEngine.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> ient/UimaAsBaseCallbackListener.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> ient/UimaASStatusCallbackListener.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
> ient/UimaASProcessStatus.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
> ror/ErrorResult.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
> ror/ErrorResultComponentPath.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
> ror/ErrorResultTDs.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> ceSpecifier/factory/DeploymentDescriptorFactory.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> ceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> ceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java...
> Loading source file
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
> ceSpecifier/factory/ServiceContext.java...
> Loading source files for package org.apache.uima.resourceSpecifier.factory...
> Loading source files for package org.apache.uima.resourceSpecifier.factory.impl...
> Loading source files for package org.apache.uima.tools.debug.util...
> Loading source files for package org.apache.uima...
> Loading source files for package org.apache.uima.collection.metadata...
> Loading source files for package org.apache.uima.resource.service.impl...
> Loading source files for package org.apache.uima.analysis_engine.metadata.impl...
> Loading source files for package org.apache.uima.pear.tools...
> Loading source files for package org.apache.uima.flow...
> Loading source files for package
> org.apache.uima.analysis_engine.impl.compatibility...
> Loading source files for package org.apache.uima.pear.util...
> Loading source files for package org.apache.uima.search...
> Loading source files for package org.apache.uima.jcas.tcas...
> Loading source files for package org.apache.uima.analysis_engine...
> Loading source files for package org.apache.uima.analysis_component...
> Loading source files for package org.apache.uima.cas.impl...
> Loading source files for package org.apache.uima.analysis_engine.metadata...
> Loading source files for package org.apache.uima.cas_data.impl...
> Loading source files for package org.apache.uima.cas_data...
> Loading source files for package org.apache.uima.internal.util...
> Loading source files for package org.apache.uima.jcas.cas...
> Loading source files for package org.apache.uima.analysis_engine.annotator...
> Loading source files for package org.apache.uima.collection.impl...
> Loading source files for package org.apache.uima.resource.metadata...
> Loading source files for package org.apache.uima.resource...
> Loading source files for package org.apache.uima.jcas...
> Loading source files for package org.apache.uima.cas.text...
> Loading source files for package org.apache.uima.search.impl...
> Loading source files for package org.apache.uima.jcas.impl...
> Loading source files for package org.apache.uima.util...
> Loading source files for package org.apache.uima.cas...
> Loading source files for package org.apache.uima.cas.admin...
> Loading source files for package org.apache.uima.util.impl...
> Loading source files for package org.apache.uima.analysis_engine.impl...
> Loading source files for package org.apache.uima.examples...
> Loading source files for package org.apache.uima.analysis_engine.asb...
> Loading source files for package org.apache.uima.collection.base_cpm...
> Loading source files for package org.apache.uima.impl...
> Loading source files for package org.apache.uima.resource.metadata.impl...
> Loading source files for package org.apache.uima.resource.impl...
> Loading source files for package org.apache.uima.collection...
> Loading source files for package org.apache.uima.uimacpp...
> Loading source files for package org.apache.uima.analysis_engine.asb.impl...
> Loading source files for package org.apache.uima.internal.util.text...
> Loading source files for package org.apache.uima.analysis_engine.service.impl...
> Loading source files for package org.apache.uima.internal.util.rb_trees...
> Loading source files for package org.apache.uima.flow.impl...
> Loading source files for package org.apache.uima.resourceSpecifier.impl...
> Loading source files for package org.apache.uima.resourceSpecifier...
> Loading source files for package org.apache.uima.adapter.jms.service...
> Loading source files for package org.apache.uima.adapter.jms...
> Loading source files for package org.apache.uima.adapter.jms.client...
> Loading source files for package org.apache.uima.adapter.jms.message...
> Loading source files for package org.apache.uima.jms.error.handler...
> Loading source files for package org.apache.uima.examples.as...
> Loading source files for package org.apache.uima.adapter.jms.activemq...
> Loading source files for package org.apache.uima.adapter.vinci.util...
> Loading source files for package org.apache.uima.adapter.vinci...
> Loading source files for package org.apache.uima.camel...
> Loading source files for package org.apache.uima.taeconfigurator...
> Loading source files for package org.apache.uima.taeconfigurator.editors.xml...
> Loading source files for package org.apache.uima.taeconfigurator.wizards...
> Loading source files for package org.apache.uima.taeconfigurator.editors...
> Loading source files for package
> org.apache.uima.taeconfigurator.editors.ui.dialogs...
> Loading source files for package org.apache.uima.taeconfigurator.files...
> Loading source files for package org.apache.uima.taeconfigurator.model...
> Loading source files for package org.apache.uima.taeconfigurator.editors.point...
> Loading source files for package org.apache.uima.taeconfigurator.editors.ui...
> Loading source files for package org.apache.uima.tools.cvd...
> Loading source files for package org.apache.uima.tools...
> Loading source files for package org.apache.uima.tools.annot_view...
> Loading source files for package org.apache.uima.tools.jcasgen...
> Loading source files for package org.apache.uima.tools.pear.merger...
> Loading source files for package org.apache.uima.tools.images...
> Loading source files for package org.apache.uima.tools.cpm...
> Loading source files for package org.apache.uima.tools.docanalyzer...
> Loading source files for package org.apache.uima.tools.util.htmlview...
> Loading source files for package org.apache.uima.tools.pear.install...
> Loading source files for package org.apache.uima.tools.util.gui...
> Loading source files for package org.apache.uima.tools.stylemap...
> Loading source files for package org.apache.uima.tools.pear.packager...
> Loading source files for package org.apache.uima.tools.migration...
> Loading source files for package org.apache.uima.tools.cvd.tsview...
> Loading source files for package org.apache.uima.tools.components...
> Loading source files for package org.apache.uima.tools.cvd.control...
> Loading source files for package org.apache.uima.tools.viewer...
> Loading source files for package org.apache.uima.test.junit_extension...
> Loading source files for package org.apache.uima.collection.impl.cpm.container...
> Loading source files for package org.apache.uima.collection.impl.metadata...
> Loading source files for package org.apache.uima.collection.impl.metadata.cpe...
> Loading source files for package
> org.apache.uima.collection.impl.cpm.container.deployer...
> Loading source files for package org.apache.uima.cas_data.impl.vinci...
> Loading source files for package
> org.apache.uima.collection.impl.cpm.vinci.cas_data...
> Loading source files for package
> org.apache.uima.collection.impl.cpm.container.deployer.vinci...
> Loading source files for package
> org.apache.uima.collection.impl.base_cpm.container.deployer...
> Loading source files for package
> org.apache.uima.collection.impl.cpm.container.deployer.vns...
> Loading source files for package org.apache.uima.collection.impl.cpm.engine...
> Loading source files for package
> org.apache.uima.collection.impl.base_cpm.container...
> Loading source files for package org.apache.uima.collection.impl.cpm...
> Loading source files for package org.apache.uima.collection.impl.cpm.vinci...
> Loading source files for package org.apache.uima.collection.impl.cpm.utils...
> Loading source files for package
> org.apache.uima.collection.impl.cpm.container.deployer.socket...
> Loading source files for package org.apache.uima.tools.images.internal...
> Loading source files for package org.apache.uima.dde.internal.provider...
> Loading source files for package org.apache.uima.editors.dde.internal...
> Loading source files for package org.apache.uima.dde.internal.details...
> Loading source files for package org.apache.uima.dde.internal.page...
> Loading source files for package org.apache.uima.dde.internal.hover...
> Loading source files for package org.apache.uima.tools.internal.ui.forms...
> Loading source files for package org.apache.uima.tools.internal.uima.util...
> Loading source files for package org.apache.uima.dde.internal...
> Loading source files for package org.apache.uima.tools.internal.cde.uima.util...
> Loading source files for package org.apache.uima.dde.internal.wizards...
> 2578104 errors
> 642584 warnings
>
> Javadoc error string length is 86,245,295
>
> First part
>
> warning: [options] bootstrap class path not set in conjunction with -source 1.5
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
> character for encoding UTF-8
> ????   1 ? ? ? ??
> ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
> character for encoding UTF-8
> ????   1 ? ? ? ??
>  ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
> character for encoding UTF-8
> ????   1 ? ? ? ??
>   ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
> ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
> character for encoding UTF-8
> ????   1 ? ? ? ??
>    ^
>
>
> MiddlePart
>
> m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.class):24:
> warning: unm
> appable character for encoding UTF-8
>  ?   w ? x )   ? ?   ? * +   ? % , ? '   > ? ?   ?*+? ??   ? (
>                                                        ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
> ss):25: warning: unmappable character for encoding UTF-8
>  ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
>      ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
> ss):25: warning: unmappable character for encoding UTF-8
>  ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
>          ^
>
> LastPart
>                                                         ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> rocessor.class):89: error: illegal character: \0
>  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P? ?Y+??M?N?  Y?
>                                                          ^
>
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> rocessor.class):89: error: illegal character: \1
>  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P? ?Y+?M?N?   Y?
>                                                           ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> rocessor.class):89: error: illegal character: \22
>  d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P? ?Y+?M?N?   Y?
>                                                            ^
> C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
> rocessor.class):89: error: illegal character: \0
>
>
>
>
>
> This script (on my windows machine) looks like this:
> c:\p\j\ibm7sr2\jre\..\bin\javadoc.exe @options
>
> So, it's calling out the specific java I'm using and passing an options file
> which looks like this (some extra newlines inserted by hand ...)
>
> -classpath
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/classes;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-jms/2.4.0/camel-jms-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-io/7.0.1.v20091125/jetty-io-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/josql/1.5/josql-1.5.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.2/geronimo-servlet_2.5_spec-1.2.jar;
> C:/Users/IBM_ADMIN/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/xbean/xbean-spring/3.7/xbean-spring-3.7.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/fusesource/commonman/commons-management/1.0/commons-management-1.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-security/7.0.1.v20091125/jetty-security-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime-deployeditor/2.4.0/uimaj-ep-runtime-deployeditor-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-core/2.4.0/uimaj-core-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/2.0.0/geronimo-j2ee-connector_1.5_spec-2.0.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-websocket/7.0.1.v20091125/jetty-websocket-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-asm/3.0.3.RELEASE/spring-asm-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-tx/3.0.3.RELEASE/spring-tx-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-core/2.4.0/uimaj-as-core-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-webmvc/3.0.3.RELEASE/spring-webmvc-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-aop/3.0.3.RELEASE/spring-aop-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/asm/asm-commons/3.1/asm-commons-3.1.jar;C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-jms/2.4.0/uimaj-as-jms-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-activemq/2.4.0/uimaj-as-activemq-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar
> ;C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-expression/3.0.3.RELEASE/spring-expression-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1/geronimo-jms_1.1_spec-1.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-adapter-vinci/2.4.0/uimaj-adapter-vinci-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-beanutils/commons-beanutils/1.6.1/commons-beanutils-1.6.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-camel/2.4.0/uimaj-as-camel-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-http/7.0.1.v20091125/jetty-http-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-osgi-runtime/2.4.0/uimaj-as-osgi-runtime-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/com/ibm/icu/icu4j/4.0.1/icu4j-4.0.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-camel/5.4.1/activemq-camel-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-configurator/2.4.0/uimaj-ep-configurator-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-tools/2.4.0/uimaj-tools-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-test-util/2.4.0/uimaj-test-util-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar;
> C:/Users/IBM_ADMIN/.m2/repository/axis/axis/1.2-RC1/axis-1.2-RC1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-xml/7.0.1.v20091125/jetty-xml-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime/2.4.0/uimaj-ep-runtime-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/xmlbeans/xmlbeans/2.4.0/xmlbeans-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activeio-core/3.1.2/activeio-core-3.1.2.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-web/3.0.3.RELEASE/spring-web-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-optional/5.4.1/activemq-optional-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-core/3.0.3.RELEASE/spring-core-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-continuation/7.0.1.v20091125/jetty-continuation-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-net/commons-net/2.0/commons-net-2.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-all/5.4.1/activemq-all-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/asm/asm/3.1/asm-3.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-server/7.0.1.v20091125/jetty-server-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/kahadb/5.4.1/kahadb-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-webapp/7.0.1.v20091125/jetty-webapp-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-servlet/7.0.1.v20091125/jetty-servlet-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/jasypt/jasypt/1.6/jasypt-1.6.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-core/1.2.1/spring-osgi-core-1.2.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-beans/3.0.3.RELEASE/spring-beans-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-io/1.2.1/spring-osgi-io-1.2.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-jms/3.0.3.RELEASE/spring-jms-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-pool/5.4.1/activemq-pool-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-core/5.4.1/activemq-core-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-web/5.4.1/activemq-web-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/gentlyweb-utils/1.5/gentlyweb-utils-1.5.jar;
> C:/Users/IBM_ADMIN/.m2/repository/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-console/5.4.1/activemq-console-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-deployeditor/2.4.0/uimaj-ep-deployeditor-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-core/2.4.0/camel-core-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-jaas/5.4.1/activemq-jaas-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/jVinci/2.4.0/jVinci-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/jdom/jdom/1.0/jdom-1.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/aggregate/jetty-all-server/7.0.1.v20091125/jetty-all-server-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-util/7.0.1.v20091125/jetty-util-7.0.1.v20091125.jar;
> C:/Users/IBM_ADMIN/.m2/repository/xmlpull/xmlpull/1.1.3.4d_b4_min/xmlpull-1.1.3.4d_b4_min.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context/3.0.3.RELEASE/spring-context-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context-support/3.0.3.RELEASE/spring-context-support-3.0.3.RELEASE.jar;
> C:/Users/IBM_ADMIN/.m2/repository/asm/asm-tree/3.1/asm-tree-3.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-cpe/2.4.0/uimaj-cpe-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-spring/5.4.1/activemq-spring-5.4.1.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-document-annotation/2.4.0/uimaj-document-annotation-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/rome/rome/0.8/rome-0.8.jar;
> C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-spring/2.4.0/camel-spring-2.4.0.jar;
> C:/Users/IBM_ADMIN/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar'
> -encoding
> 'UTF-8'
> -exclude
> org.apache.uima.aae:org.apache.uima.aae.client:org.apache.uima.aae.controller:org.apache.uima.aae.delegate:
> org.apache.uima.aae.deploymentDescriptor:org.apache.uima.aae.error:org.apache.uima.aae.error.handler:
> org.apache.uima.aae.handler:org.apache.uima.aae.handler.input:org.apache.uima.aae.jmx:org.apache.uima.aae.jmx.monitor:org.apache.uima.aae.message:
> org.apache.uima.aae.monitor:org.apache.uima.aae.monitor.statistics:org.apache.uima.aae.spi.transport:
> org.apache.uima.aae.spi.transport.vm
> -protected
> -source
> '5'
> -sourcepath
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/uimaj-as-core/src/main/java'
> -subpackages
> org.apache.uima
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/BasicUimaJmxMonitorListener.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/JmxMonitorListener.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/ServiceMetrics.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/SingleLineUimaJmxMonitorListener.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/monitor/statistics/AnalysisEnginePerformanceMetrics.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsynchronousEngine.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsBaseCallbackListener.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASStatusCallbackListener.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASProcessStatus.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResult.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultComponentPath.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultTDs.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/DeploymentDescriptorFactory.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java
>                
> C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/ServiceContext.java
> -author
> -bottom
> 'Copyright &#169; 2006-2012 <a href="http://www.apache.org/">The Apache Software
> Foundation</a>. All Rights Reserved.'
> -charset
> 'UTF-8'
> -d
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/site/apidocs'
> -docencoding
> 'UTF-8'
> -doctitle
> 'Apache UIMA Async Scaleout Java SDK 2.4.0 User-Level API Documentation'
> -group
> 'Packages' '*'
> -link
> 'http://uima.apache.org/d/uimaj-2.4.0/apidocs'
> -linkoffline
> 'http://download.oracle.com/javase/1.5.0/docs/api'
> 'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/javadoc-bundle-options'
> -tag
> "generated:X"
> -tag
> "ordered:X"
> -tag
> "modifiable:X"
> -tag
> "model:X"
> -tag
> "pre:X"
> -use
> -version
> -windowtitle
> 'Apache UIMA-AS Java SDK 2.4.0 User-Level API Documentation'
>
>
>
>
>


Re: Strange problem with Javadoc generation and JVMs

Posted by Marshall Schor <ms...@schor.com>.
I did some more investigation.

Once you run mvn install on the uima-as source and the javadoc generation fails,
it leaves in
target/site/apidocs directory of the top level directory for the uima-as build,
a script that is the javadoc command that it ran.

The good (?) news is that you can run this command script - which only runs the
javadoc executable (no maven involvement at all), and it will reproduce the
error.  Warning:  The error is multiple repetitions of lines that have invalid
character codes in them.  My poor terminal emulator goes crazy, rings it's
"bell" multiple times (rapidly at first, then slower - I guess it's getting
tired...), and refuses to cancel, quit, close, etc.  The only way I can stop the
bell ringing and close the window is to start to reboot the machine (the normal
ways of "killing" the terminal don't work).

I modified the maven javadoc plugin temporarily, to debug this.  It captures the
error output as a big string.  It's so big you can't do much with it but I did
manage to figure out how to print out the 1st bit, something from the middle,
and the last bit.   

I'm posting all this in hopes that others more brilliant than me can point to
some issue that's causing this; remember, it only happens on "late" versions of
IBM Java 6 and 7.  I hope we can find a work-around!

-Marshall



Here's what the output looks like (I think the invalid chars were replaced in my
editor by ? etc.)

[INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
[INFO]
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
x/monitor/BasicUimaJmxMonitorListener.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
x/monitor/JmxMonitorListener.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
x/monitor/ServiceMetrics.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jm
x/monitor/SingleLineUimaJmxMonitorListener.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/mo
nitor/statistics/AnalysisEnginePerformanceMetrics.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
ient/UimaAsynchronousEngine.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
ient/UimaAsBaseCallbackListener.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
ient/UimaASStatusCallbackListener.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/cl
ient/UimaASProcessStatus.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
ror/ErrorResult.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
ror/ErrorResultComponentPath.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/er
ror/ErrorResultTDs.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
ceSpecifier/factory/DeploymentDescriptorFactory.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
ceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
ceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java...
Loading source file
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resour
ceSpecifier/factory/ServiceContext.java...
Loading source files for package org.apache.uima.resourceSpecifier.factory...
Loading source files for package org.apache.uima.resourceSpecifier.factory.impl...
Loading source files for package org.apache.uima.tools.debug.util...
Loading source files for package org.apache.uima...
Loading source files for package org.apache.uima.collection.metadata...
Loading source files for package org.apache.uima.resource.service.impl...
Loading source files for package org.apache.uima.analysis_engine.metadata.impl...
Loading source files for package org.apache.uima.pear.tools...
Loading source files for package org.apache.uima.flow...
Loading source files for package
org.apache.uima.analysis_engine.impl.compatibility...
Loading source files for package org.apache.uima.pear.util...
Loading source files for package org.apache.uima.search...
Loading source files for package org.apache.uima.jcas.tcas...
Loading source files for package org.apache.uima.analysis_engine...
Loading source files for package org.apache.uima.analysis_component...
Loading source files for package org.apache.uima.cas.impl...
Loading source files for package org.apache.uima.analysis_engine.metadata...
Loading source files for package org.apache.uima.cas_data.impl...
Loading source files for package org.apache.uima.cas_data...
Loading source files for package org.apache.uima.internal.util...
Loading source files for package org.apache.uima.jcas.cas...
Loading source files for package org.apache.uima.analysis_engine.annotator...
Loading source files for package org.apache.uima.collection.impl...
Loading source files for package org.apache.uima.resource.metadata...
Loading source files for package org.apache.uima.resource...
Loading source files for package org.apache.uima.jcas...
Loading source files for package org.apache.uima.cas.text...
Loading source files for package org.apache.uima.search.impl...
Loading source files for package org.apache.uima.jcas.impl...
Loading source files for package org.apache.uima.util...
Loading source files for package org.apache.uima.cas...
Loading source files for package org.apache.uima.cas.admin...
Loading source files for package org.apache.uima.util.impl...
Loading source files for package org.apache.uima.analysis_engine.impl...
Loading source files for package org.apache.uima.examples...
Loading source files for package org.apache.uima.analysis_engine.asb...
Loading source files for package org.apache.uima.collection.base_cpm...
Loading source files for package org.apache.uima.impl...
Loading source files for package org.apache.uima.resource.metadata.impl...
Loading source files for package org.apache.uima.resource.impl...
Loading source files for package org.apache.uima.collection...
Loading source files for package org.apache.uima.uimacpp...
Loading source files for package org.apache.uima.analysis_engine.asb.impl...
Loading source files for package org.apache.uima.internal.util.text...
Loading source files for package org.apache.uima.analysis_engine.service.impl...
Loading source files for package org.apache.uima.internal.util.rb_trees...
Loading source files for package org.apache.uima.flow.impl...
Loading source files for package org.apache.uima.resourceSpecifier.impl...
Loading source files for package org.apache.uima.resourceSpecifier...
Loading source files for package org.apache.uima.adapter.jms.service...
Loading source files for package org.apache.uima.adapter.jms...
Loading source files for package org.apache.uima.adapter.jms.client...
Loading source files for package org.apache.uima.adapter.jms.message...
Loading source files for package org.apache.uima.jms.error.handler...
Loading source files for package org.apache.uima.examples.as...
Loading source files for package org.apache.uima.adapter.jms.activemq...
Loading source files for package org.apache.uima.adapter.vinci.util...
Loading source files for package org.apache.uima.adapter.vinci...
Loading source files for package org.apache.uima.camel...
Loading source files for package org.apache.uima.taeconfigurator...
Loading source files for package org.apache.uima.taeconfigurator.editors.xml...
Loading source files for package org.apache.uima.taeconfigurator.wizards...
Loading source files for package org.apache.uima.taeconfigurator.editors...
Loading source files for package
org.apache.uima.taeconfigurator.editors.ui.dialogs...
Loading source files for package org.apache.uima.taeconfigurator.files...
Loading source files for package org.apache.uima.taeconfigurator.model...
Loading source files for package org.apache.uima.taeconfigurator.editors.point...
Loading source files for package org.apache.uima.taeconfigurator.editors.ui...
Loading source files for package org.apache.uima.tools.cvd...
Loading source files for package org.apache.uima.tools...
Loading source files for package org.apache.uima.tools.annot_view...
Loading source files for package org.apache.uima.tools.jcasgen...
Loading source files for package org.apache.uima.tools.pear.merger...
Loading source files for package org.apache.uima.tools.images...
Loading source files for package org.apache.uima.tools.cpm...
Loading source files for package org.apache.uima.tools.docanalyzer...
Loading source files for package org.apache.uima.tools.util.htmlview...
Loading source files for package org.apache.uima.tools.pear.install...
Loading source files for package org.apache.uima.tools.util.gui...
Loading source files for package org.apache.uima.tools.stylemap...
Loading source files for package org.apache.uima.tools.pear.packager...
Loading source files for package org.apache.uima.tools.migration...
Loading source files for package org.apache.uima.tools.cvd.tsview...
Loading source files for package org.apache.uima.tools.components...
Loading source files for package org.apache.uima.tools.cvd.control...
Loading source files for package org.apache.uima.tools.viewer...
Loading source files for package org.apache.uima.test.junit_extension...
Loading source files for package org.apache.uima.collection.impl.cpm.container...
Loading source files for package org.apache.uima.collection.impl.metadata...
Loading source files for package org.apache.uima.collection.impl.metadata.cpe...
Loading source files for package
org.apache.uima.collection.impl.cpm.container.deployer...
Loading source files for package org.apache.uima.cas_data.impl.vinci...
Loading source files for package
org.apache.uima.collection.impl.cpm.vinci.cas_data...
Loading source files for package
org.apache.uima.collection.impl.cpm.container.deployer.vinci...
Loading source files for package
org.apache.uima.collection.impl.base_cpm.container.deployer...
Loading source files for package
org.apache.uima.collection.impl.cpm.container.deployer.vns...
Loading source files for package org.apache.uima.collection.impl.cpm.engine...
Loading source files for package
org.apache.uima.collection.impl.base_cpm.container...
Loading source files for package org.apache.uima.collection.impl.cpm...
Loading source files for package org.apache.uima.collection.impl.cpm.vinci...
Loading source files for package org.apache.uima.collection.impl.cpm.utils...
Loading source files for package
org.apache.uima.collection.impl.cpm.container.deployer.socket...
Loading source files for package org.apache.uima.tools.images.internal...
Loading source files for package org.apache.uima.dde.internal.provider...
Loading source files for package org.apache.uima.editors.dde.internal...
Loading source files for package org.apache.uima.dde.internal.details...
Loading source files for package org.apache.uima.dde.internal.page...
Loading source files for package org.apache.uima.dde.internal.hover...
Loading source files for package org.apache.uima.tools.internal.ui.forms...
Loading source files for package org.apache.uima.tools.internal.uima.util...
Loading source files for package org.apache.uima.dde.internal...
Loading source files for package org.apache.uima.tools.internal.cde.uima.util...
Loading source files for package org.apache.uima.dde.internal.wizards...
2578104 errors
642584 warnings

Javadoc error string length is 86,245,295

First part

warning: [options] bootstrap class path not set in conjunction with -source 1.5
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
character for encoding UTF-8
????   1 ? ? ? ??
^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
character for encoding UTF-8
????   1 ? ? ? ??
 ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
character for encoding UTF-8
????   1 ? ? ? ??
  ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-as-osgi-runtime\2.4.0\uimaj-as-osgi-runtime-2.4.0.jar(org/apache/uima/resourceSpecif
ier/factory/UimaASPrimitiveDeploymentDescriptor.class):1: warning: unmappable
character for encoding UTF-8
????   1 ? ? ? ??
   ^


MiddlePart

m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.class):24:
warning: unm
appable character for encoding UTF-8
 ?   w ? x )   ? ?   ? * +   ? % , ? '   > ? ?   ?*+? ??   ? (
                                                       ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
ss):25: warning: unmappable character for encoding UTF-8
 ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
     ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/UIMARuntimeException.cla
ss):25: warning: unmappable character for encoding UTF-8
 ?   ? ? ? )   ? ?   ? * +     ? - . ? ? % / ? '   T ? ? *+,-? ??   ? (
         ^

LastPart
                                                        ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
rocessor.class):89: error: illegal character: \0
 d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P? ?Y+??M?N?  Y?
                                                         ^

C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
rocessor.class):89: error: illegal character: \1
 d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P? ?Y+?M?N?   Y?
                                                          ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
rocessor.class):89: error: illegal character: \22
 d ? e ? f & g / h ?   ? ?   4 ? z     4 ? z ?   ? ? ? ?  ?? ?    P? ?Y+?M?N?   Y?
                                                           ^
C:\Users\IBM_ADMIN\.m2\repository\org\apache\uima\uimaj-ep-runtime\2.4.0\uimaj-ep-runtime-2.4.0.jar(org/apache/uima/pear/tools/InstallationP
rocessor.class):89: error: illegal character: \0





This script (on my windows machine) looks like this:
c:\p\j\ibm7sr2\jre\..\bin\javadoc.exe @options

So, it's calling out the specific java I'm using and passing an options file
which looks like this (some extra newlines inserted by hand ...)

-classpath
'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/classes;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-jms/2.4.0/camel-jms-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-io/7.0.1.v20091125/jetty-io-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/josql/1.5/josql-1.5.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.2/geronimo-servlet_2.5_spec-1.2.jar;
C:/Users/IBM_ADMIN/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/xbean/xbean-spring/3.7/xbean-spring-3.7.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/fusesource/commonman/commons-management/1.0/commons-management-1.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-security/7.0.1.v20091125/jetty-security-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime-deployeditor/2.4.0/uimaj-ep-runtime-deployeditor-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-core/2.4.0/uimaj-core-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/2.0.0/geronimo-j2ee-connector_1.5_spec-2.0.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-websocket/7.0.1.v20091125/jetty-websocket-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-asm/3.0.3.RELEASE/spring-asm-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-tx/3.0.3.RELEASE/spring-tx-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-core/2.4.0/uimaj-as-core-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-webmvc/3.0.3.RELEASE/spring-webmvc-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-aop/3.0.3.RELEASE/spring-aop-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/asm/asm-commons/3.1/asm-commons-3.1.jar;C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-jms/2.4.0/uimaj-as-jms-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-activemq/2.4.0/uimaj-as-activemq-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar
;C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-expression/3.0.3.RELEASE/spring-expression-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1/geronimo-jms_1.1_spec-1.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-adapter-vinci/2.4.0/uimaj-adapter-vinci-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-beanutils/commons-beanutils/1.6.1/commons-beanutils-1.6.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-camel/2.4.0/uimaj-as-camel-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-http/7.0.1.v20091125/jetty-http-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-as-osgi-runtime/2.4.0/uimaj-as-osgi-runtime-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/com/ibm/icu/icu4j/4.0.1/icu4j-4.0.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-camel/5.4.1/activemq-camel-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-configurator/2.4.0/uimaj-ep-configurator-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-tools/2.4.0/uimaj-tools-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-test-util/2.4.0/uimaj-test-util-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar;
C:/Users/IBM_ADMIN/.m2/repository/axis/axis/1.2-RC1/axis-1.2-RC1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-xml/7.0.1.v20091125/jetty-xml-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-runtime/2.4.0/uimaj-ep-runtime-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/xmlbeans/xmlbeans/2.4.0/xmlbeans-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activeio-core/3.1.2/activeio-core-3.1.2.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-web/3.0.3.RELEASE/spring-web-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-optional/5.4.1/activemq-optional-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-core/3.0.3.RELEASE/spring-core-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-continuation/7.0.1.v20091125/jetty-continuation-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-net/commons-net/2.0/commons-net-2.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-all/5.4.1/activemq-all-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/asm/asm/3.1/asm-3.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-server/7.0.1.v20091125/jetty-server-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/kahadb/5.4.1/kahadb-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-webapp/7.0.1.v20091125/jetty-webapp-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-servlet/7.0.1.v20091125/jetty-servlet-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/jasypt/jasypt/1.6/jasypt-1.6.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-core/1.2.1/spring-osgi-core-1.2.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-beans/3.0.3.RELEASE/spring-beans-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/osgi/spring-osgi-io/1.2.1/spring-osgi-io-1.2.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-jms/3.0.3.RELEASE/spring-jms-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-pool/5.4.1/activemq-pool-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-core/5.4.1/activemq-core-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-web/5.4.1/activemq-web-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/net/sf/josql/gentlyweb-utils/1.5/gentlyweb-utils-1.5.jar;
C:/Users/IBM_ADMIN/.m2/repository/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-console/5.4.1/activemq-console-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-ep-deployeditor/2.4.0/uimaj-ep-deployeditor-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-core/2.4.0/camel-core-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-jaas/5.4.1/activemq-jaas-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/jVinci/2.4.0/jVinci-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/jdom/jdom/1.0/jdom-1.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/aggregate/jetty-all-server/7.0.1.v20091125/jetty-all-server-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/eclipse/jetty/jetty-util/7.0.1.v20091125/jetty-util-7.0.1.v20091125.jar;
C:/Users/IBM_ADMIN/.m2/repository/xmlpull/xmlpull/1.1.3.4d_b4_min/xmlpull-1.1.3.4d_b4_min.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context/3.0.3.RELEASE/spring-context-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/springframework/spring-context-support/3.0.3.RELEASE/spring-context-support-3.0.3.RELEASE.jar;
C:/Users/IBM_ADMIN/.m2/repository/asm/asm-tree/3.1/asm-tree-3.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-cpe/2.4.0/uimaj-cpe-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/activemq/activemq-spring/5.4.1/activemq-spring-5.4.1.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/uima/uimaj-document-annotation/2.4.0/uimaj-document-annotation-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/rome/rome/0.8/rome-0.8.jar;
C:/Users/IBM_ADMIN/.m2/repository/org/apache/camel/camel-spring/2.4.0/camel-spring-2.4.0.jar;
C:/Users/IBM_ADMIN/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar'
-encoding
'UTF-8'
-exclude
org.apache.uima.aae:org.apache.uima.aae.client:org.apache.uima.aae.controller:org.apache.uima.aae.delegate:
org.apache.uima.aae.deploymentDescriptor:org.apache.uima.aae.error:org.apache.uima.aae.error.handler:
org.apache.uima.aae.handler:org.apache.uima.aae.handler.input:org.apache.uima.aae.jmx:org.apache.uima.aae.jmx.monitor:org.apache.uima.aae.message:
org.apache.uima.aae.monitor:org.apache.uima.aae.monitor.statistics:org.apache.uima.aae.spi.transport:
org.apache.uima.aae.spi.transport.vm
-protected
-source
'5'
-sourcepath
'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/uimaj-as-core/src/main/java'
-subpackages
org.apache.uima
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/BasicUimaJmxMonitorListener.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/JmxMonitorListener.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/ServiceMetrics.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/jmx/monitor/SingleLineUimaJmxMonitorListener.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/monitor/statistics/AnalysisEnginePerformanceMetrics.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsynchronousEngine.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaAsBaseCallbackListener.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASStatusCallbackListener.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/client/UimaASProcessStatus.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResult.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultComponentPath.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/aae/error/ErrorResultTDs.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/DeploymentDescriptorFactory.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASPrimitiveDeploymentDescriptor.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/UimaASAggregateDeploymentDescriptor.java
               
C:\au\t\as-2.4.0\uima-as-2.4.0-source-release-build-try\uima-as-2.4.0/uimaj-as-core/src/main/java/org/apache/uima/resourceSpecifier/factory/ServiceContext.java
-author
-bottom
'Copyright &#169; 2006-2012 <a href="http://www.apache.org/">The Apache Software
Foundation</a>. All Rights Reserved.'
-charset
'UTF-8'
-d
'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/site/apidocs'
-docencoding
'UTF-8'
-doctitle
'Apache UIMA Async Scaleout Java SDK 2.4.0 User-Level API Documentation'
-group
'Packages' '*'
-link
'http://uima.apache.org/d/uimaj-2.4.0/apidocs'
-linkoffline
'http://download.oracle.com/javase/1.5.0/docs/api'
'C:/au/t/as-2.4.0/uima-as-2.4.0-source-release-build-try/uima-as-2.4.0/target/javadoc-bundle-options'
-tag
"generated:X"
-tag
"ordered:X"
-tag
"modifiable:X"
-tag
"model:X"
-tag
"pre:X"
-use
-version
-windowtitle
'Apache UIMA-AS Java SDK 2.4.0 User-Level API Documentation'





Re: Strange problem with Javadoc generation and JVMs

Posted by Marshall Schor <ms...@schor.com>.
Jerry was able to reproduce (issue: to change Java that maven uses, you have to
set JAVA_HOME, not PATH).

He's investigating.

-Marshall

On 9/17/2012 11:24 AM, Jaroslaw Cwiklik wrote:
> I've fixed remaining javadoc Warnings. Unable to reproduce OOM with ibm 1.7
> jvm. The build works
> for me.
>
>
> On Mon, Sep 17, 2012 at 10:10 AM, Jaroslaw Cwiklik <ui...@gmail.com> wrote:
>
>>
>> On Sat, Sep 15, 2012 at 5:01 PM, Marshall Schor <ms...@schor.com> wrote:
>>
>>> While checking the release candidate for UIMA AS 2.4.0, I find I'm having
>>> trouble building from source (from the source-release.zip), at the
>>> generate-javadoc step.
>>>
>>> When I run using an Oracle JVM I see 9 Warnings from the JavaDoc (I've
>>> copied
>>> these below).
>>> I examined the first one: it says that the (parameterized) type
>>> o.a.camel.impl.DefaultComponent doesn't take parameters, but when I look
>>> this
>>> up, it seems it does.  So the warning seems wrong?
>>>
>>> But, even worse, when I run maven using a recent IBM JVM (any after
>>> release
>>> 6/service-release 8/fixpack-1), such as the lastest Java 7 service
>>> release 2, I
>>> get a summary message listing a huge number of Java doc errors (> 2.5
>>> million)
>>> and warnings, followed by a JVM out-of-memory error (not fixed when even
>>> with a
>>> 2GB -Xmx...)
>>>
>>> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
>>> [INFO]
>>> 2577734 errors
>>> 642448 warnings
>>> [ERROR] Java heap space -> [Help 1]
>>> java.lang.OutOfMemoryError: Java heap space
>>>         at
>>> java.lang.StringBuffer.ensureCapacityImpl(StringBuffer.java:338)
>>>         at java.lang.StringBuffer.append(StringBuffer.java:204)
>>>         at
>>>
>>> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:4989)
>>>
>>> Anyone else have this issue, or figured out what's going on?
>>>
>>> -Marshall
>>>
>>>
>>> Here's the output for 9 warnings when running with older IBM JVM's or
>>> Oracle JVM:
>>>
>>> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
>>> [INFO]
>>> 9 warnings
>>>
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:33:
>>> type org.apache.camel.impl.DefaultComponent does not take parameters
>>> public class UimaAsComponent extends DefaultComponent<Exchange> {
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:36:
>>> type org.apache.camel.Endpoint does not take parameters
>>> protected Endpoint<Exchange> createEndpoint(String uri, String remaining,
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:34:
>>> type org.apache.camel.impl.DefaultEndpoint does not take parameters
>>> public class UimaAsEndpoint extends DefaultEndpoint<Exchange> {
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:84:
>>> type org.apache.camel.Consumer does not take parameters
>>> public Consumer<Exchange> createConsumer(Processor arg0) throws Exception
>>> {
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:88:
>>> type org.apache.camel.Producer does not take parameters
>>> public Producer<Exchange> createProducer() throws Exception {
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:51:
>>> type org.apache.camel.impl.DefaultProducer does not take parameters
>>> public class UimaAsProducer extends DefaultProducer<Exchange> implements
>>> AsyncProcessor {
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:144:
>>> type org.apache.camel.Endpoint does not take parameters
>>> public UimaAsProducer(String brokerAddress, String queue, Integer
>>> casPoolSize,
>>> Integer timeout, Endpoint<Exchange> endpoint)
>>> ^
>>>
>>> \uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
>>> warning - @param argument "location" is not a parameter name.
>>>
>>>
>>> \uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
>>> warning - @param argument "samplingFrequency" is not a parameter name.
>>>
>>>
>>> Fixed Warnings for these:
>>
>> \uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
>> warning - @param argument "location" is not a parameter name.
>>
>>
>> \uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
>> warning - @param argument "samplingFrequency" is not a parameter name
>>
>> The above were generated due to inconsistent method headers. The headers
>> named params not present in the method signature.
>>
>> Not sure yet about the rest of the Warnings and the OOM. Working on this
>> now.
>>
>>
>>
>>


Re: Strange problem with Javadoc generation and JVMs

Posted by Jaroslaw Cwiklik <ui...@gmail.com>.
I've fixed remaining javadoc Warnings. Unable to reproduce OOM with ibm 1.7
jvm. The build works
for me.


On Mon, Sep 17, 2012 at 10:10 AM, Jaroslaw Cwiklik <ui...@gmail.com> wrote:

>
>
> On Sat, Sep 15, 2012 at 5:01 PM, Marshall Schor <ms...@schor.com> wrote:
>
>> While checking the release candidate for UIMA AS 2.4.0, I find I'm having
>> trouble building from source (from the source-release.zip), at the
>> generate-javadoc step.
>>
>> When I run using an Oracle JVM I see 9 Warnings from the JavaDoc (I've
>> copied
>> these below).
>> I examined the first one: it says that the (parameterized) type
>> o.a.camel.impl.DefaultComponent doesn't take parameters, but when I look
>> this
>> up, it seems it does.  So the warning seems wrong?
>>
>> But, even worse, when I run maven using a recent IBM JVM (any after
>> release
>> 6/service-release 8/fixpack-1), such as the lastest Java 7 service
>> release 2, I
>> get a summary message listing a huge number of Java doc errors (> 2.5
>> million)
>> and warnings, followed by a JVM out-of-memory error (not fixed when even
>> with a
>> 2GB -Xmx...)
>>
>> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
>> [INFO]
>> 2577734 errors
>> 642448 warnings
>> [ERROR] Java heap space -> [Help 1]
>> java.lang.OutOfMemoryError: Java heap space
>>         at
>> java.lang.StringBuffer.ensureCapacityImpl(StringBuffer.java:338)
>>         at java.lang.StringBuffer.append(StringBuffer.java:204)
>>         at
>>
>> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:4989)
>>
>> Anyone else have this issue, or figured out what's going on?
>>
>> -Marshall
>>
>>
>> Here's the output for 9 warnings when running with older IBM JVM's or
>> Oracle JVM:
>>
>> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
>> [INFO]
>> 9 warnings
>>
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:33:
>> type org.apache.camel.impl.DefaultComponent does not take parameters
>> public class UimaAsComponent extends DefaultComponent<Exchange> {
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:36:
>> type org.apache.camel.Endpoint does not take parameters
>> protected Endpoint<Exchange> createEndpoint(String uri, String remaining,
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:34:
>> type org.apache.camel.impl.DefaultEndpoint does not take parameters
>> public class UimaAsEndpoint extends DefaultEndpoint<Exchange> {
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:84:
>> type org.apache.camel.Consumer does not take parameters
>> public Consumer<Exchange> createConsumer(Processor arg0) throws Exception
>> {
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:88:
>> type org.apache.camel.Producer does not take parameters
>> public Producer<Exchange> createProducer() throws Exception {
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:51:
>> type org.apache.camel.impl.DefaultProducer does not take parameters
>> public class UimaAsProducer extends DefaultProducer<Exchange> implements
>> AsyncProcessor {
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:144:
>> type org.apache.camel.Endpoint does not take parameters
>> public UimaAsProducer(String brokerAddress, String queue, Integer
>> casPoolSize,
>> Integer timeout, Endpoint<Exchange> endpoint)
>> ^
>>
>> \uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
>> warning - @param argument "location" is not a parameter name.
>>
>>
>> \uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
>> warning - @param argument "samplingFrequency" is not a parameter name.
>>
>>
>> Fixed Warnings for these:
>
>
> \uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
> warning - @param argument "location" is not a parameter name.
>
>
> \uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
> warning - @param argument "samplingFrequency" is not a parameter name
>
> The above were generated due to inconsistent method headers. The headers
> named params not present in the method signature.
>
> Not sure yet about the rest of the Warnings and the OOM. Working on this
> now.
>
>
>
>

Re: Strange problem with Javadoc generation and JVMs

Posted by Jaroslaw Cwiklik <ui...@gmail.com>.
On Sat, Sep 15, 2012 at 5:01 PM, Marshall Schor <ms...@schor.com> wrote:

> While checking the release candidate for UIMA AS 2.4.0, I find I'm having
> trouble building from source (from the source-release.zip), at the
> generate-javadoc step.
>
> When I run using an Oracle JVM I see 9 Warnings from the JavaDoc (I've
> copied
> these below).
> I examined the first one: it says that the (parameterized) type
> o.a.camel.impl.DefaultComponent doesn't take parameters, but when I look
> this
> up, it seems it does.  So the warning seems wrong?
>
> But, even worse, when I run maven using a recent IBM JVM (any after release
> 6/service-release 8/fixpack-1), such as the lastest Java 7 service release
> 2, I
> get a summary message listing a huge number of Java doc errors (> 2.5
> million)
> and warnings, followed by a JVM out-of-memory error (not fixed when even
> with a
> 2GB -Xmx...)
>
> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
> [INFO]
> 2577734 errors
> 642448 warnings
> [ERROR] Java heap space -> [Help 1]
> java.lang.OutOfMemoryError: Java heap space
>         at java.lang.StringBuffer.ensureCapacityImpl(StringBuffer.java:338)
>         at java.lang.StringBuffer.append(StringBuffer.java:204)
>         at
>
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:4989)
>
> Anyone else have this issue, or figured out what's going on?
>
> -Marshall
>
>
> Here's the output for 9 warnings when running with older IBM JVM's or
> Oracle JVM:
>
> [INFO] --- maven-javadoc-plugin:2.8:javadoc (javadocs-distr) @ uima-as ---
> [INFO]
> 9 warnings
>
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:33:
> type org.apache.camel.impl.DefaultComponent does not take parameters
> public class UimaAsComponent extends DefaultComponent<Exchange> {
> ^
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsComponent.java:36:
> type org.apache.camel.Endpoint does not take parameters
> protected Endpoint<Exchange> createEndpoint(String uri, String remaining,
> ^
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:34:
> type org.apache.camel.impl.DefaultEndpoint does not take parameters
> public class UimaAsEndpoint extends DefaultEndpoint<Exchange> {
> ^
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:84:
> type org.apache.camel.Consumer does not take parameters
> public Consumer<Exchange> createConsumer(Processor arg0) throws Exception {
> ^
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsEndpoint.java:88:
> type org.apache.camel.Producer does not take parameters
> public Producer<Exchange> createProducer() throws Exception {
> ^
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:51:
> type org.apache.camel.impl.DefaultProducer does not take parameters
> public class UimaAsProducer extends DefaultProducer<Exchange> implements
> AsyncProcessor {
> ^
>
> \uima-as-2.4.0\uimaj-as-camel\src\main\java\org\apache\uima\camel\UimaAsProducer.java:144:
> type org.apache.camel.Endpoint does not take parameters
> public UimaAsProducer(String brokerAddress, String queue, Integer
> casPoolSize,
> Integer timeout, Endpoint<Exchange> endpoint)
> ^
>
> \uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
> warning - @param argument "location" is not a parameter name.
>
>
> \uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
> warning - @param argument "samplingFrequency" is not a parameter name.
>
>
> Fixed Warnings for these:

\uima-as-2.4.0\uimaj-as-core\src\main\java\org\apache\uima\resourceSpecifier\factory\Import.java:53:
warning - @param argument "location" is not a parameter name.

\uima-as-2.4.0\uimaj-as-activemq\src\main\java\org\apache\uima\adapter\jms\service\UIMA_Service.java:286:
warning - @param argument "samplingFrequency" is not a parameter name

The above were generated due to inconsistent method headers. The headers
named params not present in the method signature.

Not sure yet about the rest of the Warnings and the OOM. Working on this
now.