template.dubbo.DubboApiDependency.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-doc Show documentation
Show all versions of smart-doc Show documentation
Smart-doc is a tool that supports both JAVA RESTFUL API and Apache Dubbo RPC interface document
generation.
# Add dependency
```
<%
for(dependency in dependencyList){
%>
${dependency.groupId}
${dependency.artifactId}
${dependency.version}
<%}%>
```
<%if(isNotEmpty(consumerConfigExample)){%>
Consumer config
```
${consumerConfigExample}
```
<%}%>