Silence javadoc by default 99/109699/4
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 10 Jan 2024 11:55:03 +0000 (12:55 +0100)
committerRobert Varga <nite@hq.sk>
Wed, 10 Jan 2024 20:26:12 +0000 (20:26 +0000)
Clean up build by disabling missing documentation linting or switching
enforcement on where we have zero warnings already.

Change-Id: I0da0d630b81d7090383cb608bdca56fb793e1ce4
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
59 files changed:
benchmarks/pom.xml
codec/yang-data-codec-binfmt/pom.xml
codec/yang-data-codec-gson/pom.xml
codec/yang-data-codec-xml/pom.xml
common/concepts/pom.xml
common/testutils/pom.xml
common/util/pom.xml
common/yang-common-netty/pom.xml
common/yang-common/pom.xml
data/yang-data-api/pom.xml
data/yang-data-impl/pom.xml
data/yang-data-spi/pom.xml
data/yang-data-transform/pom.xml
data/yang-data-tree-api/pom.xml
data/yang-data-tree-ri/pom.xml
data/yang-data-tree-spi/pom.xml
data/yang-data-util/pom.xml
docs/pom.xml
model/odlext-model-api/pom.xml
model/openconfig-model-api/pom.xml
model/rfc6241-model-api/pom.xml
model/rfc6536-model-api/pom.xml
model/rfc6643-model-api/pom.xml
model/rfc7952-model-api/pom.xml
model/rfc8040-model-api/pom.xml
model/rfc8528-model-api/pom.xml
model/rfc8639-model-api/pom.xml
model/rfc8819-model-api/pom.xml
model/yang-model-api/pom.xml
model/yang-model-export/pom.xml
model/yang-model-ri/pom.xml
model/yang-model-spi/pom.xml
model/yang-model-util/pom.xml
parser/odlext-parser-support/pom.xml
parser/openconfig-parser-support/pom.xml
parser/rfc6241-parser-support/pom.xml
parser/rfc6536-parser-support/pom.xml
parser/rfc6643-parser-support/pom.xml
parser/rfc7952-parser-support/pom.xml
parser/rfc8040-parser-support/pom.xml
parser/rfc8528-parser-support/pom.xml
parser/rfc8639-parser-support/pom.xml
parser/rfc8819-parser-support/pom.xml
parser/yang-ir/pom.xml
parser/yang-parser-api/pom.xml
parser/yang-parser-impl/pom.xml
parser/yang-parser-reactor/pom.xml
parser/yang-parser-rfc7950/pom.xml
parser/yang-parser-spi/pom.xml
parser/yang-test-util/pom.xml
plugin/plugin-generator-api/pom.xml
plugin/yang-maven-plugin/pom.xml
tools/yang-model-validator/pom.xml
tools/yang-validation-tool/pom.xml
xpath/yang-xpath-api/pom.xml
xpath/yang-xpath-impl/pom.xml
yang/yang-repo-api/pom.xml
yang/yang-repo-fs/pom.xml
yang/yang-repo-spi/pom.xml

index e6a83f16b3b89cc22f1bc061810d6c6f85f7a6ac..f2519908916c33c5dfbc99893e412b06bdd0e83e 100644 (file)
@@ -23,6 +23,8 @@
     <properties>
         <!-- JMH-generated code does not pass SB (very noisily)-->
         <odlparent.spotbugs.skip>true</odlparent.spotbugs.skip>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
     </properties>
 
     <dependencies>
index 303af120c60548b6987a8da57e1d7d2cbf40230b..50799f232a6fa31cedfb3e92bfca908fdf8c0c3b 100644 (file)
     <name>${project.artifactId}</name>
     <description>DataInput/Output for NormalizedNodes</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index eb8822f43fc01bdfde6fc9b3271265ed9fac91dd..6b019deb985f74e070609f52afd23ad101f678ae 100644 (file)
     <name>${project.artifactId}</name>
     <description>JSON (RFC7951) encoding for NormalizedNodes</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index 1186a73654a154eeefe8e4dbd9b03df474e6fe01..ffa2ce64fcc6d61b0b51112c0d75b38fb15d44be 100644 (file)
     <name>${project.artifactId}</name>
     <description>XML (RFC7950) encoding for NormalizedNodes</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 92baf7899743fbab277153ef0915646f645b52c2..356d0da4332983b7ab924e428cfab7f6659ad4a3 100644 (file)
     <name>${project.artifactId}</name>
     <description>Common concepts</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 98c8258865beb390fe2c455c0877969e85d16a36..ef6d41d4e748ca9f4ac09ed1c4ea6b6d91c0117a 100644 (file)
     <version>13.0.1-SNAPSHOT</version>
     <!-- Currently not needed, maybe later: <packaging>bundle</packaging> -->
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencyManagement>
         <dependencies>
             <dependency>
index a82701142afe45e1e91867c2ab0295738fbe2850..8ca9a5d568d3623cb6665d057cb370796ef64f06 100644 (file)
     <name>${project.artifactId}</name>
     <description>Common utilities</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.opendaylight.yangtools</groupId>
index a67f06815c28b53906e6d5f8f5862d80954b1bd0..a24c7d2274d5322748ffacc84c3302e12b50559b 100644 (file)
     <description>Netty utilities for Common YANG definitions</description>
     <url>https://wiki.opendaylight.org/display/ODL/YANG+Tools</url>
 
+    <properties>
+        <maven.javadoc.failOnWarnings>true</maven.javadoc.failOnWarnings>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.eclipse.jdt</groupId>
index cab315ce2896c38eec010f09c7902aa837f4ad98..e6977e2ae529ded14bab688fb80cea89bc44c789 100644 (file)
     <name>${project.artifactId}</name>
     <description>Common YANG definitions</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 362c04b14359122126b8efb780e6823e031372e7..44344c171fff5757226f138da1c6ec441545140f 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index d20a183568e111efcc08a43be03d7b5bdb5ae5a7..b8ce93d809fc9405df827106a14f0a601dee41d0 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <extensions>true</extensions>
-                <configuration>
-                    <instructions>
-                        <!-- FIXME: do not export data.impl -->
-                        <!-- FIXME: use OSGi annotations when we have R7 -->
-                        <Export-Package>
-                            {local-packages},
-                            org.opendaylight.yangtools.yang.data.impl.*,
-                            ;-split-package:=error
-                        </Export-Package>
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
 
     <dependencies>
         <dependency>
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <!-- FIXME: do not export data.impl -->
+                        <!-- FIXME: use OSGi annotations when we have R7 -->
+                        <Export-Package>
+                            {local-packages},
+                            org.opendaylight.yangtools.yang.data.impl.*,
+                            ;-split-package:=error
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>
index 1dd13bb95c76275522f65115d2defbb4ace933f4..fe2de8cb32fff941d9ba325a8a7aded081da8224 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index 5b2c44f999019acb69503243b9471cc31efa4349..e81f07286401c34fc284a5d19b85ac21af72a613 100644 (file)
     <description>${project.artifactId}</description>
     <packaging>bundle</packaging>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 6f60777b8896bd97303f5039e3ab1ca5dd674a15..5264a03c175611ba65cf32cea9ddac817dbc07f5 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index 8bc1bad75c9cd72b58bf421ef62ca927ee3dfc38..02ec38be6f813403cd47d1cf42c260a0669d46b7 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index ad27971a45981dac06bbdd197bd54778493e0edb..88d99ce90d8643580bcb8b22eb067516aa7685a2 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index abc748256419db316c4c25491710ea3ad4f9d883..3b12ba7739c84128ec7063e828cf0e8011288606 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 2492f22461467255fa85b61e03224dad287bca63..d6ae966f1eca2036ac0354fcacbf15a62030ec00 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG Tools documentation</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.opendaylight.yangtools</groupId>
index f81484a8f1a971f25d0eb04bc4bf1c684bfc3862..1294cf3c0fc353b2ad9399ed9a260f11c5d71c6a 100644 (file)
     <name>${project.artifactId}</name>
     <description>OpenDaylight yang-ext metamodel</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 090d3b54dcff09edd79674aea44e4ed19b98defa..107b640a8935803d333abcf513b511a448cf9b40 100644 (file)
     <name>${project.artifactId}</name>
     <description>OpenConfig extensions metamodel</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index fe9f84c2f11ce0459a81bf4a2623bcbfdb60e979..9bcc951c388721192a03f587e24e99548716f865 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6241 extensions for unbound metadata</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.eclipse.jdt</groupId>
index 1ecf67b5c9d51a6d341999a13c912a87d1f30148..bde84be123993c1f995ed6c61423366eff5e0b8e 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6536 metamodel</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.eclipse.jdt</groupId>
index f1071b22fbc114dfb4f18bf6ed25240c9a849462..a209b3de771b611d3f88ca58a9aa993a8009d395 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6643 extensions for SMIv2</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index a0fcdde569b0d8f60f610468f57d3a4130b85fdb..0e4d3b1e8b80e526404c656b2cba1dcc9433ad6c 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC7952 metamodel</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 5a5ab830b153c830a6e5cb4e0725da468b2587a8..86299c5a3f7dfe0c46a76da961d942034b149fe3 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8040 model API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.eclipse.jdt</groupId>
index 4e6bfb1ec39f099761ddc07a6e655a733ddb2c20..426690853948e22e955b6e0ecce26944e66b0987 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8528 model API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 958cf993e0a01ce54875837e38f7b24968740b41..dafdcc29ebaf5f2b2ae62ea16c47680c667e2cb9 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8639 model API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.eclipse.jdt</groupId>
index 562265eba489d1fc3e2fe65b0c90d553874baf2e..588fd46b0d5aec7315c5b72002d172be1ab5a5d8 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8819 model API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index b6e88ca360022a35d82d8eaa3c201dc1ef90eb78..1388ecc11aa335dc8c0f7e5e0bf73b39aef09928 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG language object model and related interfaces</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index f7fe7eed569a613b248cbee6a1299581e4c09c8e..bf0691cad3f2c9be1ced0afc14b9fcc619d813a6 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index f37e131a9a892e9ba0bc8415a5269c4d1f65e60c..8203068cf458ef126f73e483fa0dcf62ab769115 100644 (file)
     <name>${project.artifactId}</name>
     <description>Reference Implementation of yang.model.api</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index 55d25ed5cc5a9b08e10f1b68dc7e2e50cba88584..a697baa01de7a72c1edc881a2f7773fe611755a2 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index bec93284ee546ac529caa9980c4efb63f08347ff..d478327186124bd1a89ac11d11643b43d9d88320 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 7879c019b50d5167c200e5daa13a25fb16ea3b52..1a28ea9575889634adf7dadb875b7154f74934fd 100644 (file)
     <name>${project.artifactId}</name>
     <description>OpenDaylight yang-ext parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 28db4a9be9adbc6f789a42a7d6b0b17d5f04601a..19ac8c55b4acb83714afe46abe7019fe4c4185f1 100644 (file)
     <name>${project.artifactId}</name>
     <description>OpenConfig extensions parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 123489f736725cf3ccbda5b8e84c5e4e4f409993..ac69f66ecf192128db9025957a0827c27658a2ea 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6241 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 1cabd8e2c659e685e5848281161f884eaa5fb6c8..83e1ad1ba32996ed253b1f956a1b0a9fe7583130 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6536 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 0d1c8e251bcfe49bde5d90f8dbde1aa6428c7d4b..93078b710938be3726cffa64a96b168d92b30d3d 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6643 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 9f2c149e45c1264cdbd4d019c4e1c122b38b6557..f86e9cd9ecc66576be077d1135c2931236359af4 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC7952 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index e9be31eb362754acf923b033739feb00971947b0..1d2c3954cff7280015372d72a76bad583588cbbb 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8040 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index c9cda22f099aa7e7d1233156da4c827a601b2e99..425e7655ca661c873909eaad535b0e23723ecbed 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8528 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 530205d58bd86dc6b491b1edbac28ffec45e7d96..5b68981394ab4522f97b60cd86f62023ba1acce6 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8639 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 7edf77ee4ad3faa9db53b2f7be5300bc39fe06dc..600b8c6732c19dd29b322767f566e58574fa21f3 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC8819 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index cb50f3c210a94fc1358d91d4014c8245235efacc..35b1594f41873854d9a54b84711f0d7580663475 100644 (file)
     <name>${project.artifactId}</name>
     <description>Intermediate YANG parsing representation</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index c85ee98fa1d8a6d1ad67c3d7d3747db81305b175..e36c4563f07dda2c93b2326efc684b563545e4e4 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG parser API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index b14a21a6c8811eb8ec7fffe2d918c9650d13a4e7..ea33bcbb1bfbb46594a14ac9437be1081217f6ae 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG parser</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index c6ae46c2011e96c5f8fda77d2dddeee40f0b0e10..3f67227bf38d2e44cdc7d5ebac47a2c0b967e170 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG parser</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 35a8d9dc8c1075977ce3322fdea8e5331c172212..b5d614e55a3f1c1d451a45b20085b4e9fe0addbd 100644 (file)
     <name>${project.artifactId}</name>
     <description>RFC6020/RFC7950 parser support</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index 42640e35c32bd524992d5ad37189977500081b09..88f47aa14f2375e7e8d48a540587288092481b89 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG parser SPI</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index ea0f9f78a07c89518734af0a51022111a9f56148..6baad97544a0126fda175818a5ab64de41b5b89d 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index c440a6d53f02682f1b477596a4a9c396efa89eb4..d1a5e75956b7deee81950161b4d21cc2c3f6864a 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG Generator Plugin API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 18b94a2521fe6cbfc4fcb99b168d6cae177b7627..2887298c77462b12f18be2a6115da7b7cf913eeb 100644 (file)
         <maven>3.8.3</maven>
     </prerequisites>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencyManagement>
         <dependencies>
             <dependency>
index 9f8f1fde626020d187c2be61c5bc8653cbd3c72a..f9ee8c0f54bf31345c13fc91c26dce50107eb57f 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG model validator</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencyManagement>
         <dependencies>
             <dependency>
index 324452ebe6f0402d88124faab1443490cb339142..0b5e6f59db891a46a6153aebc904cdcad4c59c4c 100644 (file)
     <artifactId>yang-validation-tool</artifactId>
     <version>13.0.1-SNAPSHOT</version>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencyManagement>
         <dependencies>
             <dependency>
index b652daa1012011af0c125c5d326de4493e65e54b..0ab5071f8bc4a77edbadc74eefb70211d01c8e69 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG XPath ${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.github.spotbugs</groupId>
index 5a76ec3cbb20403ecc6b13a62d71a38be2c229ac..fa73acac0d9a5f4133f10694572b3d82587a54f5 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG XPath parser</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index e14eac4b3d69942ea74fc6a462c73228511aedfa..b548d0f1b08a08cf73a3b7854910f3309acd09fa 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG Schema Repository API</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index a429d829e664158f6c697cac7383c622bb48011d..41cbc47b70106341a523b81a805505bbbb287c95 100644 (file)
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index b2edc4a2a7f061ea83bb1e74e61db16b66601f34..ee11dd800cca4272d74f13006da9684fc3441538 100644 (file)
     <name>${project.artifactId}</name>
     <description>YANG Schema Repository SPI</description>
 
+    <properties>
+        <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+        <doclint>all,-missing</doclint>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>