File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,9 @@ configurations {
152152task generateJavaDocs (type : Javadoc ) {
153153 classpath + = project(" :wpilibj" ). sourceSets. main. compileClasspath
154154 options. links(" https://docs.oracle.com/en/java/javase/17/docs/api/" )
155- options. links(" https://docs.opencv.org/4.x/javadoc/" )
155+ // workaround for opencv site blocking javadoc tool. If the link is changed,
156+ // docs/opencv/element-list must be redownloaded
157+ options. linksOffline(" https://docs.opencv.org/4.10.0/javadoc/" , " opencv" )
156158 options. addStringOption(" tag" , " pre:a:Pre-Condition" )
157159 options. addBooleanOption(" Xdoclint/package:" +
158160 // TODO: v Document these, then remove them from the list
Original file line number Diff line number Diff line change 1+ org.opencv.aruco
2+ org.opencv.bgsegm
3+ org.opencv.bioinspired
4+ org.opencv.calib3d
5+ org.opencv.core
6+ org.opencv.dnn
7+ org.opencv.dnn_superres
8+ org.opencv.face
9+ org.opencv.features2d
10+ org.opencv.highgui
11+ org.opencv.img_hash
12+ org.opencv.imgcodecs
13+ org.opencv.imgproc
14+ org.opencv.ml
15+ org.opencv.objdetect
16+ org.opencv.osgi
17+ org.opencv.phase_unwrapping
18+ org.opencv.photo
19+ org.opencv.plot
20+ org.opencv.structured_light
21+ org.opencv.text
22+ org.opencv.tracking
23+ org.opencv.utils
24+ org.opencv.video
25+ org.opencv.videoio
26+ org.opencv.wechat_qrcode
27+ org.opencv.xfeatures2d
28+ org.opencv.ximgproc
29+ org.opencv.xphoto
You can’t perform that action at this time.
0 commit comments