diecui1202 opened a new issue #2600: add javadoc to dubbo-all module URL: https://github.com/apache/incubator-dubbo/issues/2600 ``` <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven_javadoc_version}</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> <configuration> <includeDependencySources>true</includeDependencySources> <dependencySourceIncludes> <dependencySourceInclude>com.alibaba:dubbo-*</dependencySourceInclude> <dependencySourceExclude>com.alibaba:hessian-*</dependencySourceExclude> </dependencySourceIncludes> <show>public</show> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <links> <link>http://docs.oracle.com/javase/7/docs/api</link> </links> </configuration> </plugin> </plugins> </build> </profile> </profiles> ``` master and 2.6.x both need to add, for master, dependencySourceInclude must be `org.apache.dubbo-*`
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
