[Geoserver-devel] Ant and Javadocs

The number of jar files used in the current development branch of GeoServer have broken the Ant javadoc target.

By eliminating the catalina directory in lib, and removing the embeded tomcat I can manage to build GeoServer javadocs again. In won't commit this change, but I do want to generate javadocs.

Jody

I have managed to just exclude the catalina directory from the document ant target:
<javadoc sourcepath="${dir.src}"
  destdir="${dir.doc}/api"
  private="true"
  windowtitle="GeoServer Documentation"
  stylesheetfile="${dir.misc}/documents/stylesheet.css"
  overview="${dir.src}/overview.html">
  <package name="org.vfny.geoserver.*"/>
  <classpath>
    <fileset dir="${dir.lib}">
      <include name="*.jar"/>
      <exclude name="*/catalina/*"/>
      </fileset>
    </classpath> ...
</javadoc>

This results in javadoc generation, with errors for the EmbededTomcat class, an acceptable temporary compromise.

Jody

The number of jar files used in the current development branch of GeoServer have broken the Ant javadoc target.

By eliminating the catalina directory in lib, and removing the embeded tomcat I can manage to build GeoServer javadocs again. In won't commit this change, but I do want to generate javadocs.

Jody

-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
OCX 2024
_______________________________________________
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel