You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "beiwei30 (GitHub)" <gi...@apache.org> on 2019/03/14 02:36:12 UTC

[GitHub] [incubator-dubbo] beiwei30 opened issue #3646: javadoc lint issue

Javadoc lint issue leads to build failure on Java 8 and above with the command "mvn clean install -Papache-release". 

This issue is exact same as #2864 reports. We still need to clean up all javadoc issues since we cannot fully control **apache-release** profile. Right now, we can work around this particular issue with the following change:

```diff
--- a/pom.xml
+++ b/pom.xml
@@ -196,6 +196,15 @@
     </dependencies>
 
     <profiles>
+        <profile>
+            <id>javadoc-lint</id>
+            <activation>
+                <jdk>[1.8,)</jdk>
+            </activation>
+            <properties>
+                <doclint>none</doclint>
+            </properties>
+        </profile>
         <profile>
             <id>checkstyle</id>
             <activation>
```

[ Full content available at: https://github.com/apache/incubator-dubbo/issues/3646 ]
This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org


[GitHub] [incubator-dubbo] chickenlj closed issue #3646: javadoc lint issue

Posted by "chickenlj (GitHub)" <gi...@apache.org>.
[ issue closed by chickenlj ]

[ Full content available at: https://github.com/apache/incubator-dubbo/issues/3646 ]
This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org