mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-03 03:01:44 +00:00
Renable javadoc fail on error (#631)
Remove reference check and fix HTML error
This commit is contained in:
committed by
Peter Johnson
parent
fb6d7b3470
commit
6eee457898
@@ -51,9 +51,9 @@ task sourcesJar(type: Jar, dependsOn: classes) {
|
||||
task javadoc(type: Javadoc, overwrite: true) {
|
||||
javadoc.options.links("http://docs.oracle.com/javase/8/docs/api/")
|
||||
options.addStringOption "tag", "pre:a:Pre-Condition"
|
||||
options.addStringOption('Xdoclint:accessibility,syntax,html', '-quiet')
|
||||
source = sourceSets.main.allJava
|
||||
options.addStringOption('Xdoclint:accessibility,syntax,reference,html', '-quiet')
|
||||
failOnError = false
|
||||
failOnError = true
|
||||
}
|
||||
|
||||
task javadocJar(type: Jar, dependsOn: javadoc) {
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
* Classes in the {@code edu.wpi.first.wpilibj.vision} package are designed to
|
||||
* simplify using OpenCV vision processing code from a robot program.
|
||||
*
|
||||
* <p>An example usecase for grabbing a yellow tote from 2015 in autonomous:
|
||||
* An example usecase for grabbing a yellow tote from 2015 in autonomous:
|
||||
* <br>
|
||||
* <pre><code>
|
||||
* public class Robot extends IterativeRobot
|
||||
@@ -84,6 +84,5 @@
|
||||
*
|
||||
* }
|
||||
* </code></pre>
|
||||
* </p>
|
||||
*/
|
||||
package edu.wpi.first.wpilibj.vision;
|
||||
|
||||
Reference in New Issue
Block a user