Skip to content

Commit 21c40dc

Browse files
committed
fix errors in javadoc generation
1 parent cd50293 commit 21c40dc

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

build.xml

+16-10
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ ${line.separator}with the path to where you have the code for Processing 4 check
179179

180180
<!-- create the java reference of the library -->
181181
<mkdir dir="dist/tmp/video/reference" />
182-
<javadoc bottom="Processing video library by The Processing Foundation. (c) 2011-21"
182+
<javadoc bottom="Processing video library by The Processing Foundation. (c) 2011-22"
183183
classpath="${core.classpath.location}/core.jar;
184184
library/gst1-java-core-1.4.0.jar;
185185
library/jna.jar;
@@ -191,15 +191,21 @@ ${line.separator}with the path to where you have the code for Processing 4 check
191191
doctitle="Javadocs: Video"
192192
windowtitle="Javadocs: Video">
193193

194-
<!-- TODO these are reeeaally out of date [fry 200929] -->
195-
<link href="http://java.sun.com/javase/6/docs/api/" />
196-
<link href="http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/" />
197-
198-
<taglet name="ExampleTaglet" path="resources/code" />
199-
<fileset dir="dist/tmp/video/src" defaultexcludes="yes">
200-
<!-- add packages to be added to reference. -->
201-
<include name="**/*"/>
202-
</fileset>
194+
<link href="https://docs.oracle.com/en/java/javase/11/docs/api/" />
195+
196+
<tag name="webref" enabled="false" />
197+
<tag name="nowebref" enabled="false" />
198+
<tag name="generate" enabled="false" />
199+
<tag name="instanceName" enabled="false" />
200+
<tag name="see_external" enabled="false" />
201+
<tag name="brief" description="In brief:" />
202+
<tag name="usage" />
203+
<arg value="-Xdoclint:reference,accessibility" />
204+
205+
<packageset dir="dist/tmp/video/src">
206+
<include name="**/*" />
207+
</packageset>
208+
203209
</javadoc>
204210

205211
<!-- create zip package -->

0 commit comments

Comments
 (0)