1. 27 10月, 2012 3 次提交
    • J
      Merge branch 'master' of github.com:jenkinsci/jenkins · 49646bfb
      Jesse Glick 提交于
      49646bfb
    • J
      addLoadEvent failed to pass on the Event object. · 52274032
      Jesse Glick 提交于
      Does not matter for any handlers used in Jenkins, but can break third-party frameworks.
      In particular mixpanel-2.1.min.js seems to detect when this mistake is made and somehow disables some Jenkins handlers,
      causing e.g. “LOADING” to stay on job config pages and breaking behavior.js (but only on Firefox).
      
      Using addEventListener/attachEvent where available also works, but this fix is a bit simpler and more general.
      https://gist.github.com/1930440 would also work but again seems like overkill here.
      
      To reproduce:
      diff --git a/core/src/main/resources/lib/layout/layout.jelly b/core/src/main/resources/lib/layout/layout.jelly
      index 1fb3fec..c1337c4 100644
      --- a/core/src/main/resources/lib/layout/layout.jelly
      +++ b/core/src/main/resources/lib/layout/layout.jelly
      @@ -88,6 +88,19 @@ ${h.initPageVariables(context)}
       <x:doctype name="html" />
       <html>
         <head>
      +<script type="text/javascript"><![CDATA[
      +(function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
      +    b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
      +    '//cdn.mxpnl.com/libs/mixpanel-2.1.min.js';d=c.getElementsByTagName("script")[0];
      +    d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
      +    var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
      +    Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
      +    f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
      +    'track_forms','register','register_once','unregister','identify','name_tag',
      +    'set_config','people.identify','people.set','people.increment'];for(e=0;e<h.length;e++)d(g,h[e]);
      +    a._i.push([b,c,f])};a.__SV=1.1;})(document,window.mixpanel||[]);
      +    mixpanel.init("…something valid here…");
      +]]></script>
           ${h.checkPermission(it,permission)}
      
           <title>${h.appendIfNotNull(title, ' [Jenkins]', 'Jenkins')}</title>
      52274032
    • K
      [FIXED JENKINS-9615] · d56ba241
      Kohsuke Kawaguchi 提交于
      Integrated a fix made in Stapler.
      d56ba241
  2. 26 10月, 2012 6 次提交
  3. 25 10月, 2012 21 次提交
  4. 24 10月, 2012 10 次提交
    • J
      Merge branch 'master' of github.com:jenkinsci/jenkins · fe9959af
      Jesse Glick 提交于
      fe9959af
    • K
      the trunk is toward 1.489-SNAPSHOT · 999f4951
      Kohsuke Kawaguchi 提交于
      999f4951
    • K
      creating an RC branch · 95fb8ba9
      Kohsuke Kawaguchi 提交于
      95fb8ba9
    • J
      Merge branch 'master' of github.com:jenkinsci/jenkins · 18d0ca9d
      Jesse Glick 提交于
      18d0ca9d
    • K
      merged back the RC branch · e3b79e1d
      Kohsuke Kawaguchi 提交于
      e3b79e1d
    • K
      updated changelog as a part of the release · 0f5e2285
      Kohsuke Kawaguchi 提交于
      0f5e2285
    • K
      updated changelog for release · 9dd2d538
      Kohsuke Kawaguchi 提交于
      9dd2d538
    • K
      33dd1b30
    • K
      ab83a3d0
    • K
      Revert "generating aggregated javadoc" · b5fc514d
      Kohsuke Kawaguchi 提交于
      This reverts commit d372f71a.
      
      When run from release, this results in a strange ClassCastException
      
      [INFO] Generating /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/site/apidocs/serialized-form.html...
      [INFO] 350 warnings
      [INFO] [INFO]
      [INFO] [INFO] ------------------------------------------------------------------------
      [INFO] [INFO] Skipping Jenkins main module
      [INFO] [INFO] This project has been banned from the build due to previous failures.
      [INFO] [INFO] ------------------------------------------------------------------------
      [INFO] [INFO] ------------------------------------------------------------------------
      [INFO] [INFO] Reactor Summary:
      [INFO] [INFO]
      [INFO] [INFO] Jenkins main module ............................... SUCCESS [1:42.824s]
      [INFO] [INFO] Jenkins CLI ....................................... SUCCESS [17.126s]
      [INFO] [INFO] Jenkins core ...................................... SUCCESS [2:26.217s]
      [INFO] [INFO] Maven Integration plugin .......................... SUCCESS [1:00.066s]
      [INFO] [INFO] Jenkins war ....................................... FAILURE [17.509s]
      [INFO] [INFO] Test harness for Jenkins and plugins .............. SKIPPED
      [INFO] [INFO] Jenkins UI sample plugin .......................... SKIPPED
      [INFO] [INFO] Jenkins plugin POM ................................ SKIPPED
      [INFO] [INFO] ------------------------------------------------------------------------
      [INFO] [INFO] BUILD FAILURE
      [INFO] [INFO] ------------------------------------------------------------------------
      [INFO] [INFO] Total time: 5:45.561s
      [INFO] [INFO] Finished at: Sun Oct 21 17:23:35 PDT 2012
      [INFO] [INFO] Final Memory: 99M/543M
      [INFO] [INFO] ------------------------------------------------------------------------
      [INFO] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.8:javadoc (default-cli) on project jenkins-war: An error has occurred in JavaDocs report generation:
      [INFO] [ERROR] Exit code: 1 - /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/executable-war-1.26-sources/LogFileOutputStream.java:24: warning: sun.misc.Signal is Sun proprietary API and may be removed in a future release
      [INFO] [ERROR] import sun.misc.Signal;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/executable-war-1.26-sources/LogFileOutputStream.java:25: warning: sun.misc.SignalHandler is Sun proprietary API and may be removed in a future release
      [INFO] [ERROR] import sun.misc.SignalHandler;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/PluginSubtypeMarker.java:28: package org.kohsuke does not exist
      [INFO] [ERROR] import org.kohsuke.MetaInfServices;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/PluginSubtypeMarker.java:60: cannot find symbol
      [INFO] [ERROR] symbol: class MetaInfServices
      [INFO] [ERROR] @MetaInfServices(Processor.class)
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:44: package javax.servlet does not exist
      [INFO] [ERROR] import javax.servlet.ServletContext;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:45: package javax.servlet does not exist
      [INFO] [ERROR] import javax.servlet.ServletException;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Util.java:29: package edu.umd.cs.findbugs.annotations does not exist
      [INFO] [ERROR] import edu.umd.cs.findbugs.annotations.SuppressWarnings;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:79: package javax.servlet.http does not exist
      [INFO] [ERROR] import javax.servlet.http.Cookie;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:80: package javax.servlet.http does not exist
      [INFO] [ERROR] import javax.servlet.http.HttpServletRequest;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:81: package javax.servlet.http does not exist
      [INFO] [ERROR] import javax.servlet.http.HttpServletResponse;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Descriptor.java:50: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Descriptor.java:52: package javax.servlet does not exist
      [INFO] [ERROR] import javax.servlet.RequestDispatcher;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:247: package javax.servlet.http does not exist
      [INFO] [ERROR] import javax.servlet.http.Cookie;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:251: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:252: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:76: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class hudson.model.Hudson
      [INFO] [ERROR] public Hudson(File root, ServletContext context) throws IOException, InterruptedException, ReactorException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:80: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class hudson.model.Hudson
      [INFO] [ERROR] public Hudson(File root, ServletContext context, PluginManager pluginManager) throws IOException, InterruptedException, ReactorException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:162: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Hudson
      [INFO] [ERROR] public synchronized void doQuietDown(StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:172: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Hudson
      [INFO] [ERROR] public void doLogRss( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Hudson.java:181: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Hudson
      [INFO] [ERROR] public void doFieldCheck(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/Channel.java:26: package edu.umd.cs.findbugs.annotations does not exist
      [INFO] [ERROR] import edu.umd.cs.findbugs.annotations.SuppressWarnings;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:58: package javax.servlet does not exist
      [INFO] [ERROR] import javax.servlet.Filter;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:59: package javax.servlet does not exist
      [INFO] [ERROR] import javax.servlet.FilterConfig;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:61: package javax.servlet.http does not exist
      [INFO] [ERROR] import javax.servlet.http.HttpSession;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:62: package javax.servlet.http does not exist
      [INFO] [ERROR] import javax.servlet.http.Cookie;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/widgets/HistoryWidget.java:41: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractItem.java:74: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/View.java:100: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:8: package javax.servlet does not exist
      [INFO] [ERROR] import javax.servlet.ServletRequest;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:611: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public transient final ServletContext servletContext;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:724: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] protected Jenkins(File root, ServletContext context) throws IOException, InterruptedException, ReactorException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:736: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] protected Jenkins(File root, ServletContext context, PluginManager pluginManager) throws IOException, InterruptedException, ReactorException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/init/InitStrategy.java:3: cannot find symbol
      [INFO] [ERROR] symbol  : class MetaInfServices
      [INFO] [ERROR] location: package org.kohsuke
      [INFO] [ERROR] import org.kohsuke.MetaInfServices;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/util/ProgressiveRendering.java:27: package edu.umd.cs.findbugs.annotations does not exist
      [INFO] [ERROR] import edu.umd.cs.findbugs.annotations.SuppressWarnings;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/triggers/Trigger.java:66: package edu.umd.cs.findbugs.annotations does not exist
      [INFO] [ERROR] import edu.umd.cs.findbugs.annotations.SuppressWarnings;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/ComputerSet.java:46: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2656: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public synchronized void doConfigSubmit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2701: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public synchronized void doTestPost( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2716: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public synchronized void doConfigExecutorsSubmit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2738: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public synchronized void doSubmitDescription( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2780: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doClassicThreadDump(StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2820: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public synchronized TopLevelItem doCreateItem( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2843: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public synchronized void doCreateView( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2902: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doSecured( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:2947: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doLogout( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3000: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doDoFingerprintCheck( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3069: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doCli(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, InterruptedException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3115: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doRestart(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, RestartNotSupportedException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3136: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public HttpResponse doSafeRestart(StaplerRequest req) throws IOException, ServletException, RestartNotSupportedException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3294: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doScript(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3301: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doScriptText(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3305: cannot find symbol
      [INFO] [ERROR] symbol  : class RequestDispatcher
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] private void doScript(StaplerRequest req, StaplerResponse rsp, RequestDispatcher view) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3305: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] private void doScript(StaplerRequest req, StaplerResponse rsp, RequestDispatcher view) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3328: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doEval(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3343: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doSignup( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3350: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doIconSize( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3434: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] public void doResources(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3763: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class jenkins.model.Jenkins
      [INFO] [ERROR] private static void computeVersion(ServletContext context) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Descriptor.java:809: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Descriptor<T>
      [INFO] [ERROR] public void doHelp(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:401: cannot find symbol
      [INFO] [ERROR] symbol  : class HttpServletRequest
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static Cookie getCookie(HttpServletRequest req,String name) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:401: cannot find symbol
      [INFO] [ERROR] symbol  : class Cookie
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static Cookie getCookie(HttpServletRequest req,String name) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:413: cannot find symbol
      [INFO] [ERROR] symbol  : class HttpServletRequest
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static String getCookie(HttpServletRequest req,String name, String defaultValue) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:453: cannot find symbol
      [INFO] [ERROR] symbol  : class HttpServletRequest
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static void configureAutoRefresh(HttpServletRequest request, HttpServletResponse response, boolean noAutoRefresh) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:453: cannot find symbol
      [INFO] [ERROR] symbol  : class HttpServletResponse
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static void configureAutoRefresh(HttpServletRequest request, HttpServletResponse response, boolean noAutoRefresh) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:474: cannot find symbol
      [INFO] [ERROR] symbol  : class HttpServletRequest
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static boolean isAutoRefresh(HttpServletRequest request) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:586: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static void checkPermission(Permission permission) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:590: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static void checkPermission(AccessControlled object, Permission permission) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:601: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static void checkPermission(Object object, Permission permission) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:626: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static boolean hasPermission(Permission permission) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:634: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static boolean hasPermission(Object object, Permission permission) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:651: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.Functions
      [INFO] [ERROR] public static void adminCheck(StaplerRequest req, StaplerResponse rsp, Object required, Permission permission) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Queue.java:615: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Queue
      [INFO] [ERROR] public HttpResponse doCancelItem(@QueryParameter int id) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractModelObject.java:49: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.AbstractModelObject
      [INFO] [ERROR] protected final void sendError(Exception e, StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractModelObject.java:53: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.AbstractModelObject
      [INFO] [ERROR] protected final void sendError(Exception e) throws ServletException, IOException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractModelObject.java:57: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.AbstractModelObject
      [INFO] [ERROR] protected final void sendError(String message, StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractModelObject.java:66: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.AbstractModelObject
      [INFO] [ERROR] protected final void sendError(String message, StaplerRequest req, StaplerResponse rsp, boolean pre) throws ServletException, IOException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractModelObject.java:73: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.AbstractModelObject
      [INFO] [ERROR] protected final void sendError(String message) throws ServletException, IOException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractModelObject.java:83: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.AbstractModelObject
      [INFO] [ERROR] protected final void requirePOST() throws ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/search/Search.java:27: static import only from classes and interfaces
      [INFO] [ERROR] import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/ModifiableItemGroup.java:48: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: interface hudson.model.ModifiableItemGroup<T>
      [INFO] [ERROR] T doCreateItem( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginManager.java:142: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class hudson.PluginManager
      [INFO] [ERROR] public final ServletContext context;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginManager.java:173: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletContext
      [INFO] [ERROR] location: class hudson.PluginManager
      [INFO] [ERROR] public PluginManager(ServletContext context, File rootDir) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginManager.java:655: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.PluginManager
      [INFO] [ERROR] public void doInstall(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginManager.java:694: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.PluginManager
      [INFO] [ERROR] public HttpResponse doProxyConfigure(StaplerRequest req) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginManager.java:712: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.PluginManager
      [INFO] [ERROR] public HttpResponse doUploadPlugin(StaplerRequest req) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/FormValidation.java:490: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.util.FormValidation
      [INFO] [ERROR] public void generateResponse(StaplerRequest req, StaplerResponse rsp, Object node) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/FormValidation.java:499: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.util.FormValidation
      [INFO] [ERROR] protected void respond(StaplerResponse rsp, String html) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:297: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public abstract void doLaunchSlaveAgent( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException;
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1009: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public void doRssAll( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1012: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public void doRssFailed( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1015: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] private void rss(StaplerRequest req, StaplerResponse rsp, String suffix, RunList runs) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1020: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public HttpResponse doToggleOffline(@QueryParameter String offlineMessage) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1035: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public HttpResponse doChangeOfflineCause(@QueryParameter String offlineMessage) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1052: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public void doDumpExportTable( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, InterruptedException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1086: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public void doScript(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1093: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public void doScriptText(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1097: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] protected void _doScript( StaplerRequest req, StaplerResponse rsp, String view) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1118: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] public void doConfigSubmit( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException, FormException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1140: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Computer.java:1163: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.model.Computer
      [INFO] [ERROR] private void replaceBy(Node newNode) throws ServletException, IOException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:263: cannot find symbol
      [INFO] [ERROR] symbol  : class ServletException
      [INFO] [ERROR] location: class hudson.security.SecurityRealm
      [INFO] [ERROR] public void doLogout(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
      [INFO] [ERROR] ^
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:418: cannot find symbol
      [INFO] [ERROR] symbol  : class FilterConfig
      [INFO] [ERROR] location: class hudson.security.SecurityRealm
      [INFO] [ERROR] public Filter createFilter(FilterConfig filterConfig) {
      [INFO] [ERROR] ^
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.ClassWriterImpl.writeClassDeprecationInfo(ClassWriterImpl.java:242)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildDeprecationInfo(ClassBuilder.java:229)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.getAnnotations(HtmlDocletWriter.java:1739)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1713)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1702)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1681)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.ClassWriterImpl.writeClassSignature(ClassWriterImpl.java:159)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassSignature(ClassBuilder.java:255)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printIndexComment(SubWriterHolderWriter.java:110)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printSummaryLinkComment(SubWriterHolderWriter.java:137)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.AbstractMemberWriter.writeMemberSummary(AbstractMemberWriter.java:407)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildSummary(MemberSummaryBuilder.java:309)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildConstructorsSummary(MemberSummaryBuilder.java:278)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.invokeMethod(MemberSummaryBuilder.java:172)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMemberSummary(ClassBuilder.java:279)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printIndexComment(SubWriterHolderWriter.java:110)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printSummaryLinkComment(SubWriterHolderWriter.java:137)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.AbstractMemberWriter.writeMemberSummary(AbstractMemberWriter.java:407)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildSummary(MemberSummaryBuilder.java:309)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildMethodsSummary(MemberSummaryBuilder.java:260)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.invokeMethod(MemberSummaryBuilder.java:172)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMemberSummary(ClassBuilder.java:279)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.TagletWriterImpl.deprecatedTagOutput(TagletWriterImpl.java:85)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.taglets.DeprecatedTaglet.getTagletOutput(DeprecatedTaglet.java:40)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.ConstructorWriterImpl.writeDeprecated(ConstructorWriterImpl.java:143)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.buildDeprecationInfo(ConstructorBuilder.java:203)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.invokeMethod(ConstructorBuilder.java:133)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.buildConstructorDoc(ConstructorBuilder.java:169)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.invokeMethod(ConstructorBuilder.java:133)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildConstructorDetails(ClassBuilder.java:312)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.TagletWriterImpl.deprecatedTagOutput(TagletWriterImpl.java:85)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.taglets.DeprecatedTaglet.getTagletOutput(DeprecatedTaglet.java:40)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.MethodWriterImpl.writeDeprecated(MethodWriterImpl.java:166)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildDeprecationInfo(MethodBuilder.java:183)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildMethodDoc(MethodBuilder.java:150)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMethodDetails(ClassBuilder.java:322)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printIndexComment(SubWriterHolderWriter.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printSummaryLinkComment(SubWriterHolderWriter.java:137)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.AbstractMemberWriter.writeMemberSummary(AbstractMemberWriter.java:407)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildSummary(MemberSummaryBuilder.java:309)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildConstructorsSummary(MemberSummaryBuilder.java:278)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.invokeMethod(MemberSummaryBuilder.java:172)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMemberSummary(ClassBuilder.java:279)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor27.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printIndexComment(SubWriterHolderWriter.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.SubWriterHolderWriter.printSummaryLinkComment(SubWriterHolderWriter.java:137)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.AbstractMemberWriter.writeMemberSummary(AbstractMemberWriter.java:407)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildSummary(MemberSummaryBuilder.java:309)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.buildMethodsSummary(MemberSummaryBuilder.java:260)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor34.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MemberSummaryBuilder.invokeMethod(MemberSummaryBuilder.java:172)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMemberSummary(ClassBuilder.java:279)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor27.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:592: warning - Tag @link: reference not found: Mode#NORMAL
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.getAnnotations(HtmlDocletWriter.java:1739)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1713)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1702)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1681)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.ConstructorWriterImpl.writeSignature(ConstructorWriterImpl.java:123)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.buildSignature(ConstructorBuilder.java:195)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.invokeMethod(ConstructorBuilder.java:133)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.buildConstructorDoc(ConstructorBuilder.java:169)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.invokeMethod(ConstructorBuilder.java:133)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildConstructorDetails(ClassBuilder.java:312)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.TagletWriterImpl.deprecatedTagOutput(TagletWriterImpl.java:70)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.taglets.DeprecatedTaglet.getTagletOutput(DeprecatedTaglet.java:40)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.ConstructorWriterImpl.writeDeprecated(ConstructorWriterImpl.java:143)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.buildDeprecationInfo(ConstructorBuilder.java:203)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.invokeMethod(ConstructorBuilder.java:133)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.buildConstructorDoc(ConstructorBuilder.java:169)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ConstructorBuilder.invokeMethod(ConstructorBuilder.java:133)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildConstructorDetails(ClassBuilder.java:312)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:1854: warning - Tag @link: can't find isSecure() in org.kohsuke.stapler.StaplerRequest
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.getAnnotations(HtmlDocletWriter.java:1739)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1713)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1702)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1681)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.MethodWriterImpl.writeSignature(MethodWriterImpl.java:145)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildSignature(MethodBuilder.java:176)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildMethodDoc(MethodBuilder.java:150)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMethodDetails(ClassBuilder.java:322)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor39.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.TagletWriterImpl.deprecatedTagOutput(TagletWriterImpl.java:70)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.taglets.DeprecatedTaglet.getTagletOutput(DeprecatedTaglet.java:40)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.MethodWriterImpl.writeDeprecated(MethodWriterImpl.java:166)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildDeprecationInfo(MethodBuilder.java:183)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildMethodDoc(MethodBuilder.java:150)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMethodDetails(ClassBuilder.java:322)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor39.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.getAnnotations(HtmlDocletWriter.java:1739)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1713)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1702)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDocletWriter.writeAnnotationInfo(HtmlDocletWriter.java:1681)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.MethodWriterImpl.writeSignature(MethodWriterImpl.java:145)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildSignature(MethodBuilder.java:176)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildMethodDoc(MethodBuilder.java:150)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMethodDetails(ClassBuilder.java:322)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor39.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.Util.isDeprecated(Util.java:811)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.TagletWriterImpl.deprecatedTagOutput(TagletWriterImpl.java:70)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.taglets.DeprecatedTaglet.getTagletOutput(DeprecatedTaglet.java:40)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.MethodWriterImpl.writeDeprecated(MethodWriterImpl.java:166)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildDeprecationInfo(MethodBuilder.java:183)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.buildMethodDoc(MethodBuilder.java:150)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.MethodBuilder.invokeMethod(MethodBuilder.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder.build(AbstractMemberBuilder.java:56)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildMethodDetails(ClassBuilder.java:322)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor39.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.buildClassDoc(ClassBuilder.java:124)
      [INFO] [ERROR] at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.invokeMethod(ClassBuilder.java:101)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder.build(AbstractBuilder.java:90)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.builders.ClassBuilder.build(ClassBuilder.java:108)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateClassFiles(HtmlDoclet.java:155)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.generateClassFiles(AbstractDoclet.java:164)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:106)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/Jenkins.java:3620: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/lazy/AbstractLazyLoadRunMap.java:100: warning - Tag @link: reference not found: Index#byNumber
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/model/lazy/AbstractLazyLoadRunMap.java:100: warning - Tag @link: reference not found: Index#byId
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/util/xstream/XStreamDOM.java:185: warning - @Link is an unknown tag -- same as a known tag except for case.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/util/xstream/XStreamDOM.java:185: warning - @Link is an unknown tag -- same as a known tag except for case.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/security/ApiTokenFilter.java:29: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/search/SearchResult.java:8: warning - @author: is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractBuild.java:504: warning - Tag @link: reference not found: RunExecution
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractBuild.java:157: warning - Tag @link: reference not found: BuildWrapper.Environment
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractBuild.java:354: warning - Tag @link: reference not found: RunExecution
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractBuild.java:157: warning - Tag @link: reference not found: BuildWrapper.Environment
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractBuild.java:354: warning - Tag @link: reference not found: RunExecution
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/AbstractBuild.java:504: warning - Tag @link: reference not found: RunExecution
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Queue.java:1226: warning - Tag @link: can't find getSubTasksOf(Task) in hudson.model.queue.Tasks
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/FoldableAction.java:58: warning - Tag @link: reference not found: Queue.Item
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Executor.java:556: warning - Tag @link: can't find getEstimatedDurationFor(Executable) in hudson.model.queue.Executables
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Saveable.java:49: warning - Tag @link: reference not found: SaveableListener.fireOnChange
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/OverallLoadStatistics.java:41: warning - Tag @see: reference not found: UnlabeldLoadStatistics
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Queue.java:974: warning - Tag @link: reference not found: MaintainTask
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Queue.java:1264: warning - Tag @link: can't find getEstimatedDurationFor(Executable) in hudson.model.queue.Executables
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Queue.java:1247: warning - Tag @link: can't find getParentOf(Executable) in hudson.model.queue.Executables
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Queue.java:1503: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Run.java:178: warning - Tag @link: reference not found: State#BUILDING
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Run.java:428: warning - @lnk is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Run.java:428: warning - Tag @linkplain: reference not found: State#POST_PRODUCTION post-production processing
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Run.java:428: warning - @lnk is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Saveable.java:49: warning - Tag @link: reference not found: SaveableListener.fireOnChange
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/TaskThread.java:174: warning - Tag @link: can't find forFile(File, TaskThread) in hudson.model.TaskThread.ListenerAndText
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/TaskThread.java:166: warning - Tag @link: can't find forMemory(TaskThread) in hudson.model.TaskThread.ListenerAndText
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/TransientComputerActionFactory.java:65: warning - End Delimiter } missing for possible See Tag in comment string: "Creates {@link Action)s for a node, using all registered {@link TransientComputerActionFactory }s."
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/TransientViewActionFactory.java:35: warning - End Delimiter } missing for possible See Tag in comment string: "Creates {@link Action)s for a view, using all registered {@link TransientViewActionFactory}s."
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/TransientViewActionFactory.java:23: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/UpdateCenter.java:119: warning - Tag @link: can't find getId in hudson.model.UpdateCenter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/UpdateCenter.java:1116: warning - @see tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/UpdateCenter.java:1116: warning - Tag @see: reference not found:
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/UserProperty.java:54: warning - Tag @link: reference not found: UserSearchProperty.UserProperty
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Saveable.java:49: warning - Tag @link: reference not found: SaveableListener.fireOnChange
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/View.java:745: warning - Tag @see:illegal character: "125" in "Jenkins#getAsynchPeople}"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/View.java:745: warning - Tag @see: can't find getAsynchPeople} in jenkins.model.Jenkins
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/WorkspaceListener.java:23: warning - @param argument "r" is not a parameter name.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/listeners/RunListener.java:98: warning - Tag @link: reference not found: Run.State#COMPLETED
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/listeners/RunListener.java:98: warning - Tag @link: reference not found: Run.State#COMPLETED
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/AbstractQueueTask.java:40: warning - Tag @link: reference not found: Queue.Task
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/FoldableAction.java:58: warning - Tag @link: reference not found: Queue.Item
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/FutureImpl.java:43: warning - Tag @link: reference not found: Queue.Item
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/MappingWorksheet.java:86: warning - Tag @see: can't find map(Task, MappingWorksheet) in hudson.model.LoadBalancer
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskDispatcher.java:132: warning - Tag @link: can't find canTake(Node, BuildableItem) in hudson.model.queue.QueueTaskDispatcher
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskDispatcher.java:132: warning - Tag @link: can't find canTake(Node, BuildableItem) in hudson.model.queue.QueueTaskDispatcher
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskDispatcher.java:132: warning - Tag @link: reference not found: Queue.Item
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskDispatcher.java:100: warning - Tag @link: can't find canRun(Item) in hudson.model.queue.QueueTaskDispatcher
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskDispatcher.java:69: warning - Tag @link: can't find canTake(Node, BuildableItem) in hudson.model.queue.QueueTaskDispatcher
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskDispatcher.java:132: warning - Tag @link: reference not found: Queue.Item
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskFilter.java:43: warning - Tag @link: reference not found: Queue.Task
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/SubTaskContributor.java:52: warning - Tag @link: reference not found: MemberExecutionUnitContributor
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/SubTaskContributor.java:52: warning - Tag @link: reference not found: MemberExecutionUnitContributor
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Saveable.java:49: warning - Tag @link: reference not found: SaveableListener.fireOnChange
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/FileSystemProvisioner.java:139: warning - Tag @link: can't find snapshot(AbstractBuild, FilePath, TaskListener) in hudson.FileSystemProvisioner
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Functions.java:1522: warning - @param argument "file" is not a parameter name.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Plugin.java:97: warning - Tag @link: reference not found: ServletContext
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/Plugin.java:97: warning - Tag @link: reference not found: ServletContext
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginWrapper.java:506: warning - Tag @link: reference not found: UpdateSite.Plugin
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginWrapper.java:496: warning - Tag @link: reference not found: UpdateSite.Plugin
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginWrapper.java:496: warning - Tag @link: reference not found: UpdateSite.Plugin
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/PluginWrapper.java:506: warning - Tag @link: reference not found: UpdateSite.Plugin
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/Saveable.java:49: warning - Tag @link: reference not found: SaveableListener.fireOnChange
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/WebAppMain.java:77: warning - Tag @link: reference not found: ServletContext
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/WebAppMain.java:77: warning - Tag @link: reference not found: ServletContext
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/scm/AbstractScmTagAction.java:47: warning - Tag @link: reference not found: CVSSCM.TagAction
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/scm/AbstractScmTagAction.java:47: warning - Tag @link: reference not found: SubversionTagAction
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/node_monitors/SwapSpaceMonitor.java:46: warning - @sine is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/triggers/SCMTrigger.java:506: warning - Tag @link: can't find SCMTriggerCause(String) in hudson.triggers.SCMTrigger.SCMTriggerCause
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/Maven.java:393: warning - Tag @link: can't find MavenInstallation(String, String, List) in hudson.tasks.Maven.MavenInstallation
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/Publisher.java:131: warning - Tag @see: malformed: "DescriptorExtensionList#createDescriptorList(hudson.model.Hudson, Class"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/Publisher.java:118: warning - Tag @author cannot be used in method documentation.  It can only be used in the following types of documentation: overview, package, class/interface.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/Publisher.java:131: warning - Tag @see: reference not found: DescriptorExtensionList#createDescriptorList(hudson.model.Hudson, Class
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/junit/PackageResult.java:178: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/junit/PackageResult.java:194: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestResult.java:59: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestObject.java:105: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestObject.java:225: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestObject.java:242: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestObject.java:116: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestResult.java:43: warning - @sine is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tasks/test/TestResult.java:259: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixAggregator.java:79: warning - Tag @see: can't find prebuild(Build,BuildListener) in hudson.tasks.BuildStep
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/fsp/WorkspaceSnapshotSCM.java:96: warning - Tag @link: reference not found: ResolvedFailedException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/fsp/WorkspaceSnapshotSCM.java:96: warning - Tag @link: reference not found: ResolvedFailedException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/init/InitReactorListener.java:20: warning - Tag @see: can't find buildReactorListener() in jenkins.model.Jenkins
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/init/InitReactorListener.java:20: warning - Tag @link: reference not found: MetaInfServices
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/init/InitStrategy.java:34: warning - Tag @link: reference not found: MetaInfServices
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/FormValidation.java:101: warning - Tag @link: reference not found: CVSSCM.DescriptorImpl#doCheckCvsRoot(String)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/HudsonIsLoading.java:42: warning - Tag @link: reference not found: ServletContext#setAttribute(String, Object)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/HudsonIsRestarting.java:42: warning - Tag @link: reference not found: ServletContext#setAttribute(String, Object)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/PluginServletFilter.java:52: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/PluginServletFilter.java:52: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/PluginServletFilter.java:52: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/ProcessKiller.java:60: warning - Tag @link: can't find kill(OSProcess) in hudson.util.ProcessKiller
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/ProcessKiller.java:60: warning - Tag @link: can't find kill(OSProcess) in hudson.util.ProcessKiller
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/ProcessKiller.java:60: warning - Tag @link: can't find kill(OSProcess) in hudson.util.ProcessKiller
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/ProcessTree.java:310: warning - Tag @see: can't find act(ProcessCallable) in hudson.util.ProcessTree.OSProcess
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/QueryParameterMap.java:50: warning - Tag @link: reference not found: HttpServletRequest#getParameter(String)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/XStream2.java:344: warning - @Override is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/jna/SHELLEXECUTEINFO.java:56: warning - Tag @see:illegal character: "58" in "MSDN: http://msdn.microsoft.com/en-us/library/bb759784(v=VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/jna/SHELLEXECUTEINFO.java:56: warning - Tag @see: reference not found: MSDN: http://msdn.microsoft.com/en-us/library/bb759784(v=VS.85).aspx
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:149: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ChainedServletFilter.java:44: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ChainedServletFilter.java:44: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ContainerAuthentication.java:47: warning - Tag @link: reference not found: HttpServletRequest
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ContainerAuthentication.java:56: warning - Tag @link: reference not found: ServletRequest
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ContainerAuthentication.java:56: warning - Tag @link: reference not found: ServletRequest
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HttpSessionContextIntegrationFilter2.java:44: warning - Tag @link: reference not found: HttpSession
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonAuthenticationEntryPoint.java:62: warning - Tag @link: reference not found: HttpServletResponse#SC_FORBIDDEN
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonFilter.java:55: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonFilter.java:55: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonFilter.java:125: warning - Tag @link: reference not found: ServletContext
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonFilter.java:125: warning - Tag @link: reference not found: ServletContext
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonPrivateSecurityRealm.java:199: warning - Tag @link: can't find commenceSignup(FederatedIdentity) in hudson.security.HudsonPrivateSecurityRealm
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/InvalidatableUserDetails.java:56: warning - Tag @link: reference not found: HttpSession
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:149: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/NoopFilter.java:39: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/NotSerilizableSecurityContext.java:43: warning - Tag @link: reference not found: HttpSession
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:127: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:127: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:418: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:149: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:418: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/SecurityRealm.java:418: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbFilter.java:122: warning - @inheritDoc used but destroy() does not override or implement any method.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbFilter.java:122: warning - @inheritDoc used but destroy() does not override or implement any method.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:36: warning - Tag @see:illegal character: "58" in "http://en.wikipedia.org/wiki/XSRF"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:36: warning - Tag @see:illegal character: "47" in "http://en.wikipedia.org/wiki/XSRF"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:36: warning - Tag @see:illegal character: "47" in "http://en.wikipedia.org/wiki/XSRF"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:36: warning - Tag @see:illegal character: "47" in "http://en.wikipedia.org/wiki/XSRF"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:36: warning - Tag @see:illegal character: "47" in "http://en.wikipedia.org/wiki/XSRF"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:36: warning - Tag @see: reference not found: http://en.wikipedia.org/wiki/XSRF
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:55: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:64: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:96: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:106: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:123: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuer.java:139: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuerDescriptor.java:59: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/csrf/CrumbIssuerDescriptor.java:37: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/slaves/ComputerListener.java:180: warning - Tag @link: can't find onTemporarilyOffline(Computer) in hudson.slaves.ComputerListener
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/slaves/ComputerListener.java:173: warning - Tag @link: can't find onTemporarilyOffline(Computer) in hudson.slaves.ComputerListener
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/slaves/DumbSlave.java:47: warning - Tag @link: can't find DumbSlave(String, String, String, String, Mode, String, ComputerLauncher, RetentionStrategy, List) in hudson.slaves.DumbSlave
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/slaves/NodeProperty.java:92: warning - Tag @link: can't find canTake(BuildableItem) in hudson.slaves.NodeProperty
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tools/JDKInstaller.java:269: warning - Tag @link: reference not found: FilePathFileSystem
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/tools/ToolLocationNodeProperty.java:93: warning - Tag @link: can't find forNode(Node) in hudson.slaves.NodeSpecific
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/AxisList.java:93: warning - Tag @link: reference not found: Converter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/AxisList.java:93: warning - Tag @link: reference not found: Converter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixConfiguration.java:371: warning - Tag @link:illegal character: "60" in "#scheduleBuild(List<? extends Action>, Cause)"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixConfiguration.java:371: warning - Tag @link:illegal character: "63" in "#scheduleBuild(List<? extends Action>, Cause)"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixConfiguration.java:371: warning - Tag @link:illegal character: "62" in "#scheduleBuild(List<? extends Action>, Cause)"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixConfiguration.java:381: warning - @param argument "cause" is not a parameter name.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixExecutionStrategy.java:43: warning - @sicne is an unknown tag.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/MatrixExecutionStrategy.java:52: warning - Tag @link: can't find run(MatrixBuildExecution) in hudson.matrix.MatrixExecutionStrategy
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "58" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "47" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "47" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "47" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see:illegal character: "45" in "http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java:131: warning - Tag @see: reference not found: http://jenkins.361315.n4.nabble.com/Upgrade-to-1-424-broke-our-Maven-builds-due-to-empty-system-property-key-td3726460.html
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/EmbedderLoggerImpl.java:41: warning - Tag @link: reference not found: MavenEmbedderLogger
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenEmbedderRequest.java:107: warning - Tag @link: can't find setSystemProperties(Properties) in hudson.maven.MavenEmbedder
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/lib-jenkins-maven-embedder-3.9-sources/hudson/maven/MavenEmbedderUtils.java:68: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/lib-jenkins-maven-embedder-3.9-sources/hudson/maven/MavenEmbedderUtils.java:137: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModule.java:400: warning - @Link is an unknown tag -- same as a known tag except for case.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModule.java:400: warning - @Link is an unknown tag -- same as a known tag except for case.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModuleSet.java:963: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModuleSet.java:955: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModuleSet.java:566: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModuleSet.java:813: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModuleSet.java:550: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/MavenModuleSet.java:1192: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/settings/SettingsProviderUtils.java:50: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/settings/SettingsProviderUtils.java:42: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/settings/SettingsProviderUtils.java:61: warning - @param argument "type" is not a parameter name.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/reporters/AbstractMavenJavadocArchiver.java:60: warning - @return tag has no arguments.
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "58" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "45" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see: missing '#': "http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/SWbemLocator.java:35: warning - Tag @see: can't find http://msdn.microsoft.com/en-us/library/aa393719(VS.85).aspx in org.jvnet.hudson.wmi.SWbemLocator
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/maven3-interceptor-1.2-sources/org/apache/maven/cli/DefaultMavenExecutionRequestBuilder.java:111: warning - Tag @see: reference not found: org.jvnet.hudson.maven3.MavenExecutionRequestBuilder.MavenExecutionRequestsBuilder#getMavenExecutionRequest(java.lang.String[])
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver#handle(Command)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver#terminate(IOException)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/AbstractByteArrayCommandTransport.java:52: warning - Tag @link: reference not found: CommandReceiver#handle(Command)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/AbstractByteArrayCommandTransport.java:52: warning - Tag @link: reference not found: CommandReceiver#handle(Command)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/Channel.java:1026: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/Channel.java:1046: warning - @return tag has no arguments.
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver#handle(Command)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver#terminate(IOException)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/SynchronousCommandTransport.java:17: warning - Tag @link: reference not found: CommandReceiver
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver#handle(Command)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/CommandTransport.java:121: warning - Tag @link: reference not found: CommandReceiver#terminate(IOException)
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/cli/handlers/package-info.java:4: warning - Tag @link: reference not found: OptionHandler
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/cli/handlers/package-info.java:4: warning - Tag @link: reference not found: OptionHandler
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/init/package-info.java:45: warning - Tag @link: reference not found: Task
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/init/package-info.java:45: warning - Tag @link: reference not found: Session
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/matrix/AxisList.java:93: warning - Tag @link: reference not found: Converter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/maven-plugin/src/main/java/hudson/maven/EmbedderLoggerImpl.java:41: warning - Tag @link: reference not found: MavenEmbedderLogger
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/AbstractQueueTask.java:40: warning - Tag @link: reference not found: Queue.Task
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/FutureImpl.java:43: warning - Tag @link: reference not found: Queue.Item
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/model/queue/QueueTaskFilter.java:43: warning - Tag @link: reference not found: Queue.Task
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/remoting-2.17-sources/hudson/remoting/package-info.java:31: warning - Tag @link: reference not found: Channel
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/scm/AbstractScmTagAction.java:47: warning - Tag @link: reference not found: CVSSCM.TagAction
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/scm/AbstractScmTagAction.java:47: warning - Tag @link: reference not found: SubversionTagAction
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ChainedServletFilter.java:44: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ChainedServletFilter.java:44: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/ContainerAuthentication.java:47: warning - Tag @link: reference not found: HttpServletRequest
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HttpSessionContextIntegrationFilter2.java:44: warning - Tag @link: reference not found: HttpSession
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonAuthenticationEntryPoint.java:62: warning - Tag @link: reference not found: HttpServletResponse#SC_FORBIDDEN
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/HudsonFilter.java:55: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/security/NoopFilter.java:39: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/PluginServletFilter.java:52: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/hudson/util/PluginServletFilter.java:52: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/core/src/main/java/jenkins/security/ApiTokenFilter.java:29: warning - Tag @link: reference not found: Filter
      [INFO] [ERROR] java.lang.ClassCastException
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "58" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "45" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see:illegal character: "47" in "http://msdn.microsoft.com/en-us/library/aa394582.aspx"
      [INFO] [ERROR] /files/kohsuke/ws/jenkins/rc/target/checkout/war/target/distro-javadoc-sources/jinterop-wmi-1.1-sources/org/jvnet/hudson/wmi/package-info.java:34: warning - Tag @see: reference not found: http://msdn.microsoft.com/en-us/library/aa394582.aspx
      [INFO] [ERROR] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be cast to com.sun.javadoc.AnnotationTypeDoc
      [INFO] [ERROR] at com.sun.tools.javadoc.AnnotationDescImpl.annotationType(AnnotationDescImpl.java:46)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.ClassUseMapper.mapAnnotations(ClassUseMapper.java:439)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.util.ClassUseMapper.<init>(ClassUseMapper.java:183)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.ClassUseWriter.generate(ClassUseWriter.java:109)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.generateOtherFiles(HtmlDoclet.java:92)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.startGeneration(AbstractDoclet.java:122)
      [INFO] [ERROR] at com.sun.tools.doclets.internal.toolkit.AbstractDoclet.start(AbstractDoclet.java:64)
      [INFO] [ERROR] at com.sun.tools.doclets.formats.html.HtmlDoclet.start(HtmlDoclet.java:42)
      [INFO] [ERROR] at com.sun.tools.doclets.standard.Standard.start(Standard.java:23)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      [INFO] [ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      [INFO] [ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      [INFO] [ERROR] at java.lang.reflect.Method.invoke(Method.java:597)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
      [INFO] [ERROR] at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
      [INFO] [ERROR] at com.sun.tools.javadoc.Start.begin(Start.java:128)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.execute(Main.java:41)
      [INFO] [ERROR] at com.sun.tools.javadoc.Main.main(Main.java:31)
      [INFO] [ERROR]
      [INFO] [ERROR] Command line was: /usr/lib/jvm/java-6-sun-1.6.0.26/jre/../bin/javadoc @options @packages @argfile
      [INFO] [ERROR]
      [INFO] [ERROR] Refer to the generated Javadoc files in '/files/kohsuke/ws/jenkins/rc/target/checkout/war/target/site/apidocs' dir.
      [INFO] [ERROR] -> [Help 1]
      [INFO] [ERROR]
      [INFO] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
      [INFO] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
      [INFO] [ERROR]
      [INFO] [ERROR] For more information about the errors and possible solutions, please read the following articles:
      [INFO] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
      [INFO] [ERROR]
      [INFO] [ERROR] After correcting the problems, you can resume the build with the command
      [INFO] [ERROR]   mvn <goals> -rf :jenkins-war
      [INFO] ------------------------------------------------------------------------
      [INFO] Reactor Summary:
      [INFO]
      [INFO] Jenkins main module ............................... FAILURE [5:57.094s]
      [INFO] Jenkins CLI ....................................... SKIPPED
      [INFO] Jenkins core ...................................... SKIPPED
      [INFO] Maven Integration plugin .......................... SKIPPED
      [INFO] Jenkins war ....................................... SKIPPED
      [INFO] Test harness for Jenkins and plugins .............. SKIPPED
      [INFO] Jenkins UI sample plugin .......................... SKIPPED
      [INFO] Jenkins plugin POM ................................ SKIPPED
      [INFO] ------------------------------------------------------------------------
      [INFO] BUILD FAILURE
      [INFO] ------------------------------------------------------------------------
      [INFO] Total time: 5:58.694s
      [INFO] Finished at: Sun Oct 21 17:23:35 PDT 2012
      [INFO] Final Memory: 10M/304M
      [INFO] ------------------------------------------------------------------------
      [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.2.2:perform (default-cli) on project pom: Maven execution failed, exit code: '1' -> [Help 1]
      [ERROR]
      [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
      [ERROR] Re-run Maven using the -X switch to enable full debug logging.
      [ERROR]
      [ERROR] For more information about the errors and possible solutions, please read the following articles:
      [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
      b5fc514d